mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 07:57:30 +02:00
fix warnings
This commit is contained in:
parent
97b2e3dfa4
commit
91351d7700
1 changed files with 6 additions and 6 deletions
|
@ -66,6 +66,12 @@ Audio::Audio() :
|
||||||
_inputRingBuffer(0),
|
_inputRingBuffer(0),
|
||||||
_receivedAudioStream(0, RECEIVED_AUDIO_STREAM_CAPACITY_FRAMES, InboundAudioStream::Settings()),
|
_receivedAudioStream(0, RECEIVED_AUDIO_STREAM_CAPACITY_FRAMES, InboundAudioStream::Settings()),
|
||||||
_isStereoInput(false),
|
_isStereoInput(false),
|
||||||
|
_outputBufferSizeFrames(DEFAULT_AUDIO_OUTPUT_BUFFER_SIZE_FRAMES),
|
||||||
|
_outputStarveDetectionEnabled(true),
|
||||||
|
_outputStarveDetectionStartTimeMsec(0),
|
||||||
|
_outputStarveDetectionCount(0),
|
||||||
|
_outputStarveDetectionPeriodMsec(DEFAULT_AUDIO_OUTPUT_STARVE_DETECTION_PERIOD),
|
||||||
|
_outputStarveDetectionThreshold(DEFAULT_AUDIO_OUTPUT_STARVE_DETECTION_THRESHOLD),
|
||||||
_averagedLatency(0.0f),
|
_averagedLatency(0.0f),
|
||||||
_lastInputLoudness(0.0f),
|
_lastInputLoudness(0.0f),
|
||||||
_timeSinceLastClip(-1.0f),
|
_timeSinceLastClip(-1.0f),
|
||||||
|
@ -81,12 +87,6 @@ Audio::Audio() :
|
||||||
_noiseSourceEnabled(false),
|
_noiseSourceEnabled(false),
|
||||||
_toneSourceEnabled(true),
|
_toneSourceEnabled(true),
|
||||||
_outgoingAvatarAudioSequenceNumber(0),
|
_outgoingAvatarAudioSequenceNumber(0),
|
||||||
_outputBufferSizeFrames(DEFAULT_AUDIO_OUTPUT_BUFFER_SIZE_FRAMES),
|
|
||||||
_outputStarveDetectionStartTimeMsec(0),
|
|
||||||
_outputStarveDetectionCount(0),
|
|
||||||
_outputStarveDetectionEnabled(true),
|
|
||||||
_outputStarveDetectionPeriodMsec(DEFAULT_AUDIO_OUTPUT_STARVE_DETECTION_PERIOD),
|
|
||||||
_outputStarveDetectionThreshold(DEFAULT_AUDIO_OUTPUT_STARVE_DETECTION_THRESHOLD),
|
|
||||||
_audioOutputIODevice(_receivedAudioStream, this),
|
_audioOutputIODevice(_receivedAudioStream, this),
|
||||||
_stats(&_receivedAudioStream),
|
_stats(&_receivedAudioStream),
|
||||||
_inputGate()
|
_inputGate()
|
||||||
|
|
Loading…
Reference in a new issue