| Index: webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h b/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h
|
| index 7fdc3591b309c6ce1638cb6b05fc2ab7d74988e0..3662df99d397c69becdea6bb1ed70191da615fc5 100644
|
| --- a/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h
|
| +++ b/webrtc/modules/audio_coding/codecs/g711/audio_decoder_pcm.h
|
| @@ -23,6 +23,9 @@ class AudioDecoderPcmU final : public AudioDecoder {
|
| RTC_DCHECK_GE(num_channels, 1u);
|
| }
|
| void Reset() override;
|
| + std::vector<ParseResult> ParsePayload(rtc::Buffer* payload,
|
| + uint32_t timestamp,
|
| + bool is_primary) override;
|
| int PacketDuration(const uint8_t* encoded, size_t encoded_len) const override;
|
| int SampleRateHz() const override;
|
| size_t Channels() const override;
|
| @@ -45,6 +48,9 @@ class AudioDecoderPcmA final : public AudioDecoder {
|
| RTC_DCHECK_GE(num_channels, 1u);
|
| }
|
| void Reset() override;
|
| + std::vector<ParseResult> ParsePayload(rtc::Buffer* payload,
|
| + uint32_t timestamp,
|
| + bool is_primary) override;
|
| int PacketDuration(const uint8_t* encoded, size_t encoded_len) const override;
|
| int SampleRateHz() const override;
|
| size_t Channels() const override;
|
|
|