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

Unified Diff: webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h

Issue 2942733003: Opus 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/opus/audio_decoder_opus.h
diff --git a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h
index e848f37466d8e6eda2072ca0d4202fcab634aafd..dcdaf9281ecbe5c59088c13583ed4a95c6f2cab6 100644
--- a/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h
+++ b/webrtc/modules/audio_coding/codecs/opus/audio_decoder_opus.h
@@ -17,10 +17,10 @@
namespace webrtc {
-class AudioDecoderOpus final : public AudioDecoder {
+class AudioDecoderOpusImpl final : public AudioDecoder {
public:
- explicit AudioDecoderOpus(size_t num_channels);
- ~AudioDecoderOpus() override;
+ explicit AudioDecoderOpusImpl(size_t num_channels);
+ ~AudioDecoderOpusImpl() override;
std::vector<ParseResult> ParsePayload(rtc::Buffer&& payload,
uint32_t timestamp) override;
@@ -47,7 +47,7 @@ class AudioDecoderOpus final : public AudioDecoder {
private:
OpusDecInst* dec_state_;
const size_t channels_;
- RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderOpus);
+ RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderOpusImpl);
};
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698