| Index: webrtc/modules/audio_coding/acm2/acm_receiver.h
|
| diff --git a/webrtc/modules/audio_coding/acm2/acm_receiver.h b/webrtc/modules/audio_coding/acm2/acm_receiver.h
|
| index 86fd927c8a64a26173ce41ece0830d79015c983f..b150612f6959e4fade52c7e39affdbe84333ab60 100644
|
| --- a/webrtc/modules/audio_coding/acm2/acm_receiver.h
|
| +++ b/webrtc/modules/audio_coding/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;
|
| };
|
|
|
| @@ -116,7 +116,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,
|
| const std::string& name);
|
|
|