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

Side by Side Diff: webrtc/modules/audio_coding/neteq/audio_decoder_impl.cc

Issue 2337473002: Multi frequency DTMF support - receiver side (Closed)
Patch Set: rebase Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
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
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 #ifdef WEBRTC_CODEC_G722 62 #ifdef WEBRTC_CODEC_G722
63 case NetEqDecoder::kDecoderG722: 63 case NetEqDecoder::kDecoderG722:
64 case NetEqDecoder::kDecoderG722_2ch: 64 case NetEqDecoder::kDecoderG722_2ch:
65 #endif 65 #endif
66 #ifdef WEBRTC_CODEC_OPUS 66 #ifdef WEBRTC_CODEC_OPUS
67 case NetEqDecoder::kDecoderOpus: 67 case NetEqDecoder::kDecoderOpus:
68 case NetEqDecoder::kDecoderOpus_2ch: 68 case NetEqDecoder::kDecoderOpus_2ch:
69 #endif 69 #endif
70 case NetEqDecoder::kDecoderRED: 70 case NetEqDecoder::kDecoderRED:
71 case NetEqDecoder::kDecoderAVT: 71 case NetEqDecoder::kDecoderAVT:
72 case NetEqDecoder::kDecoderAVT16kHz:
73 case NetEqDecoder::kDecoderAVT32kHz:
74 case NetEqDecoder::kDecoderAVT48kHz:
72 case NetEqDecoder::kDecoderCNGnb: 75 case NetEqDecoder::kDecoderCNGnb:
73 case NetEqDecoder::kDecoderCNGwb: 76 case NetEqDecoder::kDecoderCNGwb:
74 case NetEqDecoder::kDecoderCNGswb32kHz: 77 case NetEqDecoder::kDecoderCNGswb32kHz:
75 case NetEqDecoder::kDecoderCNGswb48kHz: 78 case NetEqDecoder::kDecoderCNGswb48kHz:
76 case NetEqDecoder::kDecoderArbitrary: { 79 case NetEqDecoder::kDecoderArbitrary: {
77 return true; 80 return true;
78 } 81 }
79 default: { 82 default: {
80 return false; 83 return false;
81 } 84 }
82 } 85 }
83 } 86 }
84 87
85 } // namespace webrtc 88 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/acm2/rent_a_codec.cc ('k') | webrtc/modules/audio_coding/neteq/audio_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698