| Index: webrtc/modules/audio_coding/main/acm2/acm_receiver.h
|
| diff --git a/webrtc/modules/audio_coding/main/acm2/acm_receiver.h b/webrtc/modules/audio_coding/main/acm2/acm_receiver.h
|
| index 46207fd449222117118caa45ee8607db09f89122..f3043836d7aecb2f3fa1e7193ad82f8ebbcdb9e7 100644
|
| --- a/webrtc/modules/audio_coding/main/acm2/acm_receiver.h
|
| +++ b/webrtc/modules/audio_coding/main/acm2/acm_receiver.h
|
| @@ -44,7 +44,7 @@ class AcmReceiver {
|
| uint8_t payload_type;
|
| // This field is meaningful for codecs where both mono and
|
| // stereo versions are registered under the same ID.
|
| - int channels;
|
| + size_t channels;
|
| int sample_rate_hz;
|
| };
|
|
|
| @@ -114,7 +114,7 @@ class AcmReceiver {
|
| //
|
| int AddCodec(int acm_codec_id,
|
| uint8_t payload_type,
|
| - int channels,
|
| + size_t channels,
|
| int sample_rate_hz,
|
| AudioDecoder* audio_decoder);
|
|
|
|
|