mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-15 01:48:07 +02:00
comments unused variable to avoid a compiler warning
This commit is contained in:
parent
7342b7a774
commit
755208aaf7
2 changed files with 3 additions and 3 deletions
|
@ -298,8 +298,8 @@ Audio::Audio(Oscilloscope* scope) :
|
|||
_averagedLatency(0.0),
|
||||
_measuredJitter(0),
|
||||
_jitterBufferLengthMsecs(12.0),
|
||||
_jitterBufferSamples(_jitterBufferLengthMsecs *
|
||||
NUM_AUDIO_CHANNELS * (SAMPLE_RATE / 1000.0)),
|
||||
// _jitterBufferSamples(_jitterBufferLengthMsecs *
|
||||
// NUM_AUDIO_CHANNELS * (SAMPLE_RATE / 1000.0)),
|
||||
_wasStarved(0),
|
||||
_numStarves(0),
|
||||
_lastInputLoudness(0),
|
||||
|
|
|
@ -63,7 +63,7 @@ private:
|
|||
float _averagedLatency;
|
||||
float _measuredJitter;
|
||||
float _jitterBufferLengthMsecs;
|
||||
short _jitterBufferSamples;
|
||||
// short _jitterBufferSamples; // currently unsused
|
||||
int _wasStarved;
|
||||
int _numStarves;
|
||||
float _lastInputLoudness;
|
||||
|
|
Loading…
Reference in a new issue