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

Unified Diff: webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc

Issue 2950453002: Opus implementation of the AudioDecoderFactoryTemplate API (Closed)
Patch Set: rebase 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/builtin_audio_decoder_factory_internal.cc
diff --git a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc
index ce7ec3d8f59e71df2de4eb730c1483b42219cb8b..8d8025718a431d268755a3829ce81b6a467e3165 100644
--- a/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc
+++ b/webrtc/modules/audio_coding/codecs/builtin_audio_decoder_factory_internal.cc
@@ -162,7 +162,7 @@ NamedDecoderConstructor decoder_constructors[] = {
if (format.clockrate_hz == 48000 && format.num_channels == 2 &&
num_channels) {
if (out) {
- out->reset(new AudioDecoderOpus(*num_channels));
+ out->reset(new AudioDecoderOpusImpl(*num_channels));
}
return true;
} else {

Powered by Google App Engine
This is Rietveld 408576698