mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
disable output starve detection on android
This commit is contained in:
parent
98a470aa35
commit
4198d1d5ca
1 changed files with 4 additions and 0 deletions
|
@ -67,7 +67,11 @@ AudioClient::AudioClient() :
|
|||
_receivedAudioStream(0, RECEIVED_AUDIO_STREAM_CAPACITY_FRAMES, InboundAudioStream::Settings()),
|
||||
_isStereoInput(false),
|
||||
_outputBufferSizeFrames(DEFAULT_AUDIO_OUTPUT_BUFFER_SIZE_FRAMES),
|
||||
#ifdef Q_OS_ANDROID
|
||||
_outputStarveDetectionEnabled(false),
|
||||
#else
|
||||
_outputStarveDetectionEnabled(true),
|
||||
#endif
|
||||
_outputStarveDetectionStartTimeMsec(0),
|
||||
_outputStarveDetectionCount(0),
|
||||
_outputStarveDetectionPeriodMsec(DEFAULT_AUDIO_OUTPUT_STARVE_DETECTION_PERIOD),
|
||||
|
|
Loading…
Reference in a new issue