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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtp_utility.cc

Issue 2524923002: Remove RTPPayloadStrategy and simplify RTPPayloadRegistry (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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/rtp_rtcp/source/rtp_utility.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtp_utility.cc b/webrtc/modules/rtp_rtcp/source/rtp_utility.cc
index 7dd59736fd044d855d0ae11ed146bd327c948e7f..6e84e6ff945ad5f187e1252641bff5fb8b9924d4 100644
--- a/webrtc/modules/rtp_rtcp/source/rtp_utility.cc
+++ b/webrtc/modules/rtp_rtcp/source/rtp_utility.cc
@@ -48,17 +48,13 @@ enum {
* Misc utility routines
*/
-#if defined(_WIN32)
-bool StringCompare(const char* str1, const char* str2,
- const uint32_t length) {
- return _strnicmp(str1, str2, length) == 0;
+bool StringCompare(const char* str1, const char* str2, const uint32_t length) {
+ return STR_NCASE_CMP(str1, str2, length) == 0;
}
-#elif defined(WEBRTC_LINUX) || defined(WEBRTC_MAC)
-bool StringCompare(const char* str1, const char* str2,
- const uint32_t length) {
- return strncasecmp(str1, str2, length) == 0;
+
+bool StringCompare(const char* str1, const char* str2) {
+ return STR_CASE_CMP(str1, str2) == 0;
}
-#endif
size_t Word32Align(size_t size) {
uint32_t remainder = size % 4;

Powered by Google App Engine
This is Rietveld 408576698