comments unused variable to avoid a compiler warning

This commit is contained in:
tosh 2013-06-19 16:19:50 +02:00
parent 7342b7a774
commit 755208aaf7
2 changed files with 3 additions and 3 deletions

View file

@ -298,8 +298,8 @@ Audio::Audio(Oscilloscope* scope) :
_averagedLatency(0.0), _averagedLatency(0.0),
_measuredJitter(0), _measuredJitter(0),
_jitterBufferLengthMsecs(12.0), _jitterBufferLengthMsecs(12.0),
_jitterBufferSamples(_jitterBufferLengthMsecs * // _jitterBufferSamples(_jitterBufferLengthMsecs *
NUM_AUDIO_CHANNELS * (SAMPLE_RATE / 1000.0)), // NUM_AUDIO_CHANNELS * (SAMPLE_RATE / 1000.0)),
_wasStarved(0), _wasStarved(0),
_numStarves(0), _numStarves(0),
_lastInputLoudness(0), _lastInputLoudness(0),

View file

@ -63,7 +63,7 @@ private:
float _averagedLatency; float _averagedLatency;
float _measuredJitter; float _measuredJitter;
float _jitterBufferLengthMsecs; float _jitterBufferLengthMsecs;
short _jitterBufferSamples; // short _jitterBufferSamples; // currently unsused
int _wasStarved; int _wasStarved;
int _numStarves; int _numStarves;
float _lastInputLoudness; float _lastInputLoudness;