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

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

Issue 2940833002: G722 implementation of the AudioDecoderFactoryTemplate API (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 c53c78c67eb6e6a1f4cc620083d3563f2f035f77..ab104f2e20ce2953fd3dda535024412c57869943 100644
--- a/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
+++ b/webrtc/modules/audio_coding/codecs/g722/audio_decoder_g722.h
@@ -18,10 +18,10 @@ typedef struct WebRtcG722DecInst G722DecInst;
namespace webrtc {
-class AudioDecoderG722 final : public AudioDecoder {
+class AudioDecoderG722Impl final : public AudioDecoder {
public:
- AudioDecoderG722();
- ~AudioDecoderG722() override;
+ AudioDecoderG722Impl();
+ ~AudioDecoderG722Impl() override;
bool HasDecodePlc() const override;
void Reset() override;
std::vector<ParseResult> ParsePayload(rtc::Buffer&& payload,
@@ -39,7 +39,7 @@ class AudioDecoderG722 final : public AudioDecoder {
private:
G722DecInst* dec_state_;
- RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderG722);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderG722Impl);
};
class AudioDecoderG722Stereo final : public AudioDecoder {

Powered by Google App Engine
This is Rietveld 408576698