mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-03-30 07:06:43 +00:00
Constify a couple fields
This commit is contained in:
parent
d67951a256
commit
58ab3407b7
1 changed files with 3 additions and 3 deletions
|
@ -283,9 +283,9 @@ class MovieAudioDecoder : public MWSound::Sound_Decoder
|
||||||
|
|
||||||
/* averaging filter for audio sync */
|
/* averaging filter for audio sync */
|
||||||
double mAudioDiffAccum;
|
double mAudioDiffAccum;
|
||||||
double mAudioDiffAvgCoef;
|
const double mAudioDiffAvgCoef;
|
||||||
double mAudioDiffThreshold;
|
const double mAudioDiffThreshold;
|
||||||
int mAudioDiffAvgCount;
|
int mAudioDiffAvgCount;
|
||||||
|
|
||||||
/* Add or subtract samples to get a better sync, return number of bytes to
|
/* Add or subtract samples to get a better sync, return number of bytes to
|
||||||
* skip (negative means to duplicate). */
|
* skip (negative means to duplicate). */
|
||||||
|
|
Loading…
Reference in a new issue