| Index: webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| index 6be0c5a8273615ec33f29a3effadbf0b1f709fa2..67cde393a48a437b20c0c873b15204e9268d81f8 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| @@ -99,7 +99,7 @@ int32_t RtpReceiverImpl::RegisterReceivePayload(
|
| const char payload_name[RTP_PAYLOAD_NAME_SIZE],
|
| const int8_t payload_type,
|
| const uint32_t frequency,
|
| - const uint8_t channels,
|
| + const size_t channels,
|
| const uint32_t rate) {
|
| CriticalSectionScoped lock(critical_section_rtp_receiver_.get());
|
|
|
| @@ -255,7 +255,7 @@ void RtpReceiverImpl::CheckSSRCChanged(const RTPHeader& rtp_header) {
|
| bool new_ssrc = false;
|
| bool re_initialize_decoder = false;
|
| char payload_name[RTP_PAYLOAD_NAME_SIZE];
|
| - uint8_t channels = 1;
|
| + size_t channels = 1;
|
| uint32_t rate = 0;
|
|
|
| {
|
|
|