1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-03 17:54:06 +00:00

Constify a couple fields

This commit is contained in:
Chris Robinson 2012-12-17 04:17:06 -08:00
parent d67951a256
commit 58ab3407b7

View File

@ -283,9 +283,9 @@ class MovieAudioDecoder : public MWSound::Sound_Decoder
/* averaging filter for audio sync */
double mAudioDiffAccum;
double mAudioDiffAvgCoef;
double mAudioDiffThreshold;
int mAudioDiffAvgCount;
const double mAudioDiffAvgCoef;
const double mAudioDiffThreshold;
int mAudioDiffAvgCount;
/* Add or subtract samples to get a better sync, return number of bytes to
* skip (negative means to duplicate). */