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

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

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/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 cd7bf3babe5edb189190c487ea3a359c95cf46da..cbf735ee2e680974f59fa50bc408e4d1c9185c46 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
@@ -130,7 +130,7 @@ NamedDecoderConstructor decoder_constructors[] = {
if (format.clockrate_hz == 8000) {
if (format.num_channels == 1) {
if (out) {
- out->reset(new AudioDecoderG722);
+ out->reset(new AudioDecoderG722Impl);
}
return true;
} else if (format.num_channels == 2) {

Powered by Google App Engine
This is Rietveld 408576698