Index: webrtc/modules/audio_coding/main/acm2/codec_manager.cc |
diff --git a/webrtc/modules/audio_coding/main/acm2/codec_manager.cc b/webrtc/modules/audio_coding/main/acm2/codec_manager.cc |
index 863a86eae5fcb3a821bbcc9b91bb9c4ade5033ee..c2e07ebd7b5b2f7c7d5933451cba19442b27cb74 100644 |
--- a/webrtc/modules/audio_coding/main/acm2/codec_manager.cc |
+++ b/webrtc/modules/audio_coding/main/acm2/codec_manager.cc |
@@ -122,11 +122,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) { |