Index: webrtc/modules/audio_coding/neteq/audio_decoder_impl.h |
diff --git a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h |
index 2d0d041692324e217f2f5dbe9d6635a170947cfd..2ef94107cb4b4eb3fed27e7331d74ffbbbfe263e 100644 |
--- a/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h |
+++ b/webrtc/modules/audio_coding/neteq/audio_decoder_impl.h |
@@ -24,9 +24,6 @@ |
#ifdef WEBRTC_CODEC_G722 |
#include "webrtc/modules/audio_coding/codecs/g722/include/g722_interface.h" |
#endif |
-#ifdef WEBRTC_CODEC_ILBC |
-#include "webrtc/modules/audio_coding/codecs/ilbc/interface/ilbc.h" |
-#endif |
#include "webrtc/typedefs.h" |
namespace webrtc { |
@@ -126,29 +123,6 @@ class AudioDecoderPcm16BMultiCh : public AudioDecoderPcm16B { |
RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderPcm16BMultiCh); |
}; |
-#ifdef WEBRTC_CODEC_ILBC |
-class AudioDecoderIlbc : public AudioDecoder { |
- public: |
- AudioDecoderIlbc(); |
- ~AudioDecoderIlbc() override; |
- bool HasDecodePlc() const override; |
- size_t DecodePlc(size_t num_frames, int16_t* decoded) override; |
- void Reset() override; |
- size_t Channels() const override; |
- |
- protected: |
- int DecodeInternal(const uint8_t* encoded, |
- size_t encoded_len, |
- int sample_rate_hz, |
- int16_t* decoded, |
- SpeechType* speech_type) override; |
- |
- private: |
- IlbcDecoderInstance* dec_state_; |
- RTC_DISALLOW_COPY_AND_ASSIGN(AudioDecoderIlbc); |
-}; |
-#endif |
- |
#ifdef WEBRTC_CODEC_G722 |
class AudioDecoderG722 : public AudioDecoder { |
public: |