| Index: webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h
|
| index d5d00acb49315436eb2f54643bb6e2d8582e397c..87383e2ac59fef5044a1365bf6e29b52fd53a79c 100644
|
| --- a/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h
|
| +++ b/webrtc/modules/audio_coding/codecs/cng/audio_encoder_cng.h
|
| @@ -32,7 +32,7 @@ class AudioEncoderCng final : public AudioEncoder {
|
| struct Config {
|
| bool IsOk() const;
|
|
|
| - int num_channels = 1;
|
| + size_t num_channels = 1;
|
| int payload_type = 13;
|
| // Caller keeps ownership of the AudioEncoder object.
|
| AudioEncoder* speech_encoder = nullptr;
|
| @@ -51,7 +51,7 @@ class AudioEncoderCng final : public AudioEncoder {
|
|
|
| size_t MaxEncodedBytes() const override;
|
| int SampleRateHz() const override;
|
| - int NumChannels() const override;
|
| + size_t NumChannels() const override;
|
| int RtpTimestampRateHz() const override;
|
| size_t Num10MsFramesInNextPacket() const override;
|
| size_t Max10MsFramesInAPacket() const override;
|
|
|