| Index: webrtc/modules/audio_coding/main/acm2/codec_owner.cc
|
| diff --git a/webrtc/modules/audio_coding/main/acm2/codec_owner.cc b/webrtc/modules/audio_coding/main/acm2/codec_owner.cc
|
| index f0c38b84dc4b3babdd9458e7e95ac33171c4f29c..e2c4548c8ed61b105716edcc1d3d4cd2600fb2f7 100644
|
| --- a/webrtc/modules/audio_coding/main/acm2/codec_owner.cc
|
| +++ b/webrtc/modules/audio_coding/main/acm2/codec_owner.cc
|
| @@ -51,11 +51,7 @@ bool IsPcmA(const CodecInst& codec) {
|
| }
|
|
|
| bool IsPcm16B(const CodecInst& codec) {
|
| - return
|
| -#ifdef WEBRTC_CODEC_PCM16
|
| - !STR_CASE_CMP(codec.plname, "l16") ||
|
| -#endif
|
| - false;
|
| + return !STR_CASE_CMP(codec.plname, "l16");
|
| }
|
|
|
| bool IsIlbc(const CodecInst& codec) {
|
|
|