| Index: webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h
|
| index 5c080c5ce3434ffe04ac710a471591febd2bbc99..0e0b562380c193a9de1a4986e0d102a47f885f8a 100644
|
| --- a/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h
|
| +++ b/webrtc/modules/audio_coding/codecs/legacy_encoded_audio_frame.h
|
| @@ -20,16 +20,13 @@ namespace webrtc {
|
|
|
| class LegacyEncodedAudioFrame : public AudioDecoder::EncodedAudioFrame {
|
| public:
|
| - LegacyEncodedAudioFrame(AudioDecoder* decoder,
|
| - rtc::Buffer* payload,
|
| - bool is_primary_payload);
|
| + LegacyEncodedAudioFrame(AudioDecoder* decoder, rtc::Buffer* payload);
|
| ~LegacyEncodedAudioFrame() override;
|
|
|
| static std::vector<AudioDecoder::ParseResult> SplitBySamples(
|
| AudioDecoder* decoder,
|
| rtc::Buffer* payload,
|
| uint32_t timestamp,
|
| - bool is_primary,
|
| size_t bytes_per_ms,
|
| uint32_t timestamps_per_ms);
|
|
|
| @@ -44,7 +41,6 @@ class LegacyEncodedAudioFrame : public AudioDecoder::EncodedAudioFrame {
|
| private:
|
| AudioDecoder* const decoder_;
|
| const rtc::Buffer payload_;
|
| - const bool is_primary_payload_;
|
| };
|
|
|
| } // namespace webrtc
|
|
|