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

Unified Diff: webrtc/audio/audio_send_stream.cc

Issue 2689183002: Clean out platform specific things from voice_engine_defines.h. (Closed)
Patch Set: more remove Created 3 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/voice_engine/test/auto_test/standard/codec_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/audio/audio_send_stream.cc
diff --git a/webrtc/audio/audio_send_stream.cc b/webrtc/audio/audio_send_stream.cc
index 8d4ad3221ffc6f96e91440190fdd8d226976222f..ec18125427282d4624543bc45b274d2b1a42692e 100644
--- a/webrtc/audio/audio_send_stream.cc
+++ b/webrtc/audio/audio_send_stream.cc
@@ -35,7 +35,7 @@ namespace {
constexpr char kOpusCodecName[] = "opus";
bool IsCodec(const webrtc::CodecInst& codec, const char* ref_name) {
- return (_stricmp(codec.plname, ref_name) == 0);
+ return (STR_CASE_CMP(codec.plname, ref_name) == 0);
}
} // namespace
« no previous file with comments | « no previous file | webrtc/voice_engine/test/auto_test/standard/codec_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698