| 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 93b115aa883435acb068436df70fed620a5a4d66..2e21f230d389cfd30f076a0177e241f6c45433d5 100644
|
| --- a/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_receiver_impl.cc
|
| @@ -96,7 +96,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());
|
|
|
| @@ -252,7 +252,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;
|
|
|
| {
|
|
|