| 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 332ad06e262cd4c69060147fb3d5e276e0f6da6e..ce7ec3d8f59e71df2de4eb730c1483b42219cb8b 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
|
| @@ -78,7 +78,7 @@ NamedDecoderConstructor decoder_constructors[] = {
|
| [](const SdpAudioFormat& format, std::unique_ptr<AudioDecoder>* out) {
|
| if (format.clockrate_hz == 8000 && format.num_channels == 1) {
|
| if (out) {
|
| - out->reset(new AudioDecoderIlbc);
|
| + out->reset(new AudioDecoderIlbcImpl);
|
| }
|
| return true;
|
| } else {
|
|
|