au.UnderrunTimeoutMSec
au.UnderrunTimeoutMSec
#Overview
name: au.UnderrunTimeoutMSec
The value of this variable can be defined or overridden in .ini config files. 1
.ini config file referencing this setting variable.
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Amount of time to wait for the render thread to generate the next buffer before submitting an underrun buffer. \n
It is referenced in 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Projects/Lyra/Config/Android/AndroidEngine.ini:22, section: [ConsoleVariables]
- INI Section:
ConsoleVariables
- Raw value:
5
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/AudioMixerCore/Private/AudioMixer.cpp:113
Scope: file
Source code excerpt:
static int32 UnderrunTimeoutCVar = 5;
FAutoConsoleVariableRef CVarUnderrunTimeout(
TEXT("au.UnderrunTimeoutMSec"),
UnderrunTimeoutCVar,
TEXT("Amount of time to wait for the render thread to generate the next buffer before submitting an underrun buffer. \n"),
ECVF_Default);
static int32 FadeoutTimeoutCVar = 2000;
FAutoConsoleVariableRef CVarFadeoutTimeout(