| 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 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 case NetEqDecoder::kDecoderPCM16B_5ch: | 61 case NetEqDecoder::kDecoderPCM16B_5ch: |
| 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::kDecoderAVT8kHz: |
| 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 |
| OLD | NEW |