mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-09 09:02:29 +02:00
Revert "remove unused variable in Audio"
This reverts commit bbdd601855
.
This commit is contained in:
parent
ca9738a101
commit
95cef67e33
2 changed files with 3 additions and 0 deletions
|
@ -306,6 +306,8 @@ Audio::Audio(Oscilloscope* scope) :
|
|||
_averagedLatency(0.0),
|
||||
_measuredJitter(0),
|
||||
_jitterBufferLengthMsecs(12.0),
|
||||
_jitterBufferSamples(_jitterBufferLengthMsecs *
|
||||
NUM_AUDIO_CHANNELS * (SAMPLE_RATE / 1000.0)),
|
||||
_wasStarved(0),
|
||||
_lastInputLoudness(0),
|
||||
_mixerLoopbackFlag(false),
|
||||
|
|
|
@ -49,6 +49,7 @@ private:
|
|||
float _averagedLatency;
|
||||
float _measuredJitter;
|
||||
float _jitterBufferLengthMsecs;
|
||||
short _jitterBufferSamples;
|
||||
int _wasStarved;
|
||||
float _lastInputLoudness;
|
||||
bool _mixerLoopbackFlag;
|
||||
|
|
Loading…
Reference in a new issue