mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 22:33:56 +02: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