Merge "Mark fields const if only set in constructor"

This commit is contained in:
Glenn Kasten
2012-02-10 15:28:45 -08:00
committed by Android (Google) Code Review

View File

@@ -72,9 +72,9 @@ protected:
AudioResampler(const AudioResampler&);
AudioResampler& operator=(const AudioResampler&);
int32_t mBitDepth;
int32_t mChannelCount;
int32_t mSampleRate;
const int32_t mBitDepth;
const int32_t mChannelCount;
const int32_t mSampleRate;
int32_t mInSampleRate;
AudioBufferProvider::Buffer mBuffer;
union {