| Index: webrtc/modules/audio_coding/codecs/opus/opus_inst.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h
|
| index 662c6fa059e0da09089a0db6029a9083fcf1091b..8d032baf355e29778c35ea8d45a48b7ee9d2cff4 100644
|
| --- a/webrtc/modules/audio_coding/codecs/opus/opus_inst.h
|
| +++ b/webrtc/modules/audio_coding/codecs/opus/opus_inst.h
|
| @@ -17,7 +17,7 @@
|
|
|
| struct WebRtcOpusEncInst {
|
| OpusEncoder* encoder;
|
| - int channels;
|
| + size_t channels;
|
| int in_dtx_mode;
|
| // When Opus is in DTX mode, we use |zero_counts| to count consecutive zeros
|
| // to break long zero segment so as to prevent DTX from going wrong. We use
|
| @@ -30,7 +30,7 @@ struct WebRtcOpusEncInst {
|
| struct WebRtcOpusDecInst {
|
| OpusDecoder* decoder;
|
| int prev_decoded_samples;
|
| - int channels;
|
| + size_t channels;
|
| int in_dtx_mode;
|
| };
|
|
|
|
|