OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" | 11 #include "webrtc/modules/audio_coding/neteq/audio_decoder_impl.h" |
12 | 12 |
13 #include <assert.h> | 13 #include <assert.h> |
14 | 14 |
15 #include "webrtc/base/checks.h" | 15 #include "webrtc/base/checks.h" |
16 #include "webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h" | 16 #include "webrtc/modules/audio_coding/codecs/cng/include/webrtc_cng.h" |
17 #include "webrtc/modules/audio_coding/codecs/g711/include/audio_decoder_pcm.h" | 17 #include "webrtc/modules/audio_coding/codecs/g711/include/audio_decoder_pcm.h" |
18 #ifdef WEBRTC_CODEC_G722 | 18 #ifdef WEBRTC_CODEC_G722 |
19 #include "webrtc/modules/audio_coding/codecs/g722/include/audio_decoder_g722.h" | 19 #include "webrtc/modules/audio_coding/codecs/g722/include/audio_decoder_g722.h" |
20 #endif | 20 #endif |
21 #ifdef WEBRTC_CODEC_ILBC | 21 #ifdef WEBRTC_CODEC_ILBC |
22 #include "webrtc/modules/audio_coding/codecs/ilbc/interface/audio_decoder_ilbc.h
" | 22 #include "webrtc/modules/audio_coding/codecs/ilbc/interface/audio_decoder_ilbc.h
" |
23 #endif | 23 #endif |
24 #ifdef WEBRTC_CODEC_ISACFX | 24 #ifdef WEBRTC_CODEC_ISACFX |
| 25 #include "webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_decoder_is
acfix.h" |
25 #include "webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_is
acfix.h" | 26 #include "webrtc/modules/audio_coding/codecs/isac/fix/interface/audio_encoder_is
acfix.h" |
26 #endif | 27 #endif |
27 #ifdef WEBRTC_CODEC_ISAC | 28 #ifdef WEBRTC_CODEC_ISAC |
| 29 #include "webrtc/modules/audio_coding/codecs/isac/main/interface/audio_decoder_i
sac.h" |
28 #include "webrtc/modules/audio_coding/codecs/isac/main/interface/audio_encoder_i
sac.h" | 30 #include "webrtc/modules/audio_coding/codecs/isac/main/interface/audio_encoder_i
sac.h" |
29 #endif | 31 #endif |
30 #ifdef WEBRTC_CODEC_OPUS | 32 #ifdef WEBRTC_CODEC_OPUS |
31 #include "webrtc/modules/audio_coding/codecs/opus/interface/audio_decoder_opus.h
" | 33 #include "webrtc/modules/audio_coding/codecs/opus/interface/audio_decoder_opus.h
" |
32 #endif | 34 #endif |
33 #include "webrtc/modules/audio_coding/codecs/pcm16b/include/audio_decoder_pcm16b
.h" | 35 #include "webrtc/modules/audio_coding/codecs/pcm16b/include/audio_decoder_pcm16b
.h" |
34 | 36 |
35 namespace webrtc { | 37 namespace webrtc { |
36 | 38 |
37 AudioDecoderCng::AudioDecoderCng() { | 39 AudioDecoderCng::AudioDecoderCng() { |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 case kDecoderRED: | 235 case kDecoderRED: |
234 case kDecoderAVT: | 236 case kDecoderAVT: |
235 case kDecoderArbitrary: | 237 case kDecoderArbitrary: |
236 default: { | 238 default: { |
237 return NULL; | 239 return NULL; |
238 } | 240 } |
239 } | 241 } |
240 } | 242 } |
241 | 243 |
242 } // namespace webrtc | 244 } // namespace webrtc |
OLD | NEW |