Files
UnrealEngineUWP/Engine/Source/Runtime/AudioPlatformConfiguration/Private/AudioCompressionSettings.cpp
Marc Audy 11f5b21210 Merging //UE5/Release-Engine-Staging @ 13752110 to Main (//UE5/Main)
#rnx

[CL 13753156 by Marc Audy in ue5-main branch]
2020-06-23 18:40:00 -04:00

22 lines
720 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AudioCompressionSettings.h"
FPlatformRuntimeAudioCompressionOverrides::FPlatformRuntimeAudioCompressionOverrides()
: bOverrideCompressionTimes(false)
, DurationThreshold(5.0f)
, MaxNumRandomBranches(0)
, SoundCueQualityIndex(0)
{
}
FPlatformRuntimeAudioCompressionOverrides* FPlatformRuntimeAudioCompressionOverrides::DefaultCompressionOverrides = nullptr;
// Increment this return value to force a recook on all Stream Caching assets.
// For testing, it's useful to set this to either a negative number or
// absurdly large number, to ensure you do not pollute the DDC.
int32 FPlatformAudioCookOverrides::GetStreamCachingVersion()
{
return 5027;
}