2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-02-22 11:25:06 -05:00
|
|
|
|
|
|
|
|
#include "AudioCompressionSettings.h"
|
|
|
|
|
|
|
|
|
|
FPlatformRuntimeAudioCompressionOverrides::FPlatformRuntimeAudioCompressionOverrides()
|
|
|
|
|
: bOverrideCompressionTimes(false)
|
|
|
|
|
, DurationThreshold(5.0f)
|
|
|
|
|
, MaxNumRandomBranches(0)
|
2018-05-23 21:04:31 -04:00
|
|
|
, SoundCueQualityIndex(0)
|
2018-02-22 11:25:06 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FPlatformRuntimeAudioCompressionOverrides* FPlatformRuntimeAudioCompressionOverrides::DefaultCompressionOverrides = nullptr;
|
2020-06-23 18:40:00 -04:00
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
}
|