Index: remoting/codec/audio_decoder.cc |
diff --git a/remoting/codec/audio_decoder.cc b/remoting/codec/audio_decoder.cc |
index 26e13eb0179cec1b2dd67efad6ba4a052745e49e..b9db77ac99b540c21b788f932d16a32f61504b0f 100644 |
--- a/remoting/codec/audio_decoder.cc |
+++ b/remoting/codec/audio_decoder.cc |
@@ -15,9 +15,7 @@ scoped_ptr<AudioDecoder> AudioDecoder::CreateAudioDecoder( |
const protocol::SessionConfig& config) { |
const protocol::ChannelConfig& audio_config = config.audio_config(); |
- if (audio_config.codec == protocol::ChannelConfig::CODEC_VERBATIM) { |
- return scoped_ptr<AudioDecoder>(new AudioDecoderVerbatim()); |
- } else if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) { |
+ if (audio_config.codec == protocol::ChannelConfig::CODEC_OPUS) { |
Wez
2013/09/12 14:20:15
Need to restore the CODEC_VERBATIM case here, so w
Sergey Ulanov
2013/09/12 19:18:45
Done.
|
return scoped_ptr<AudioDecoder>(new AudioDecoderOpus()); |
} |