| Index: webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.h b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| index fec9233e9a40b5679392b63e76809e4e70a27aad..7a64851465aeb54263e55c7a6b1b3e3fd74342f2 100644
|
| --- a/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| @@ -107,7 +107,7 @@ class NetEqImpl : public webrtc::NetEq {
|
| int GetAudio(size_t max_length,
|
| int16_t* output_audio,
|
| size_t* samples_per_channel,
|
| - int* num_channels,
|
| + size_t* num_channels,
|
| NetEqOutputType* type) override;
|
|
|
| // Associates |rtp_payload_type| with |codec| and stores the information in
|
| @@ -226,7 +226,8 @@ class NetEqImpl : public webrtc::NetEq {
|
| int GetAudioInternal(size_t max_length,
|
| int16_t* output,
|
| size_t* samples_per_channel,
|
| - int* num_channels) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
|
| + size_t* num_channels)
|
| + EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
|
|
|
| // Provides a decision to the GetAudioInternal method. The decision what to
|
| // do is written to |operation|. Packets to decode are written to
|
|
|