Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(508)

Unified Diff: webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h

Issue 2945423003: Don't forget to support G722 stereo decoding (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
diff --git a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
index ab104f2e20ce2953fd3dda535024412c57869943..0a530190fee9ce6afa98546cd1016053d3a2b72f 100644
--- a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
+++ b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
@@ -42,10 +42,10 @@ class AudioDecoderG722Impl final : public AudioDecoder {
RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderG722Impl);
};
-class AudioDecoderG722Stereo final : public AudioDecoder {
+class AudioDecoderG722StereoImpl final : public AudioDecoder {
public:
- AudioDecoderG722Stereo();
- ~AudioDecoderG722Stereo() override;
+ AudioDecoderG722StereoImpl();
+ ~AudioDecoderG722StereoImpl() override;
void Reset() override;
std::vector<ParseResult> ParsePayload(rtc::Buffer&& payload,
uint32_t timestamp) override;
@@ -71,7 +71,7 @@ class AudioDecoderG722Stereo final : public AudioDecoder {
G722DecInst* dec_state_left_;
G722DecInst* dec_state_right_;
- RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderG722Stereo);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderG722StereoImpl);
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698