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

Unified Diff: webrtc/modules/audio_coding/neteq/test/RTPencode.cc

Issue 2535593002: RTC_[D]CHECK_op: Remove "u" suffix on integer constants (Closed)
Patch Set: 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/audio_coding/neteq/test/RTPencode.cc
diff --git a/webrtc/modules/audio_coding/neteq/test/RTPencode.cc b/webrtc/modules/audio_coding/neteq/test/RTPencode.cc
index 4ccf4fbdcbf2c40d656c9b455a9179eac771e02d..f390f5330bb26f576e0f70caddf4369e60f5d96e 100644
--- a/webrtc/modules/audio_coding/neteq/test/RTPencode.cc
+++ b/webrtc/modules/audio_coding/neteq/test/RTPencode.cc
@@ -1724,7 +1724,7 @@ size_t NetEQTest_encode(webrtc::NetEqDecoder coder,
#ifdef CODEC_OPUS
cdlen = WebRtcOpus_Encode(opus_inst[k], indata, frameLen, kRtpDataSize - 12,
encoded);
- RTC_CHECK_GT(cdlen, 0u);
+ RTC_CHECK_GT(cdlen, 0);
#endif
indata += frameLen;
encoded += cdlen;
« no previous file with comments | « webrtc/modules/audio_coding/neteq/nack_tracker.cc ('k') | webrtc/modules/audio_coding/neteq/tools/encode_neteq_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698