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

Unified Diff: webrtc/tools/agc/agc_harness.cc

Issue 1316523002: Convert channel counts to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Fix compile Created 4 years, 11 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 | « webrtc/tools/agc/activity_metric.cc ('k') | webrtc/video/vie_channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/agc/agc_harness.cc
diff --git a/webrtc/tools/agc/agc_harness.cc b/webrtc/tools/agc/agc_harness.cc
index 3dcc954b81b21c0ac282bdb6f219131a0cdf30e5..0d35d4b56aa81df4cb6490f34a6911c999ab81e5 100644
--- a/webrtc/tools/agc/agc_harness.cc
+++ b/webrtc/tools/agc/agc_harness.cc
@@ -12,6 +12,7 @@
#include "gflags/gflags.h"
#include "webrtc/base/checks.h"
+#include "webrtc/base/format_macros.h"
#include "webrtc/base/scoped_ptr.h"
#include "webrtc/system_wrappers/include/sleep.h"
#include "webrtc/system_wrappers/include/trace.h"
@@ -176,8 +177,8 @@ class AgcVoiceEngine {
printf("Codecs:\n");
for (int i = 0; i < codec_->NumOfCodecs(); i++) {
RTC_CHECK_EQ(0, codec_->GetCodec(i, params));
- printf("%d %s/%d/%d\n", params.pltype, params.plname, params.plfreq,
- params.channels);
+ printf("%d %s/%d/%" PRIuS "\n", params.pltype, params.plname,
+ params.plfreq, params.channels);
}
}
« no previous file with comments | « webrtc/tools/agc/activity_metric.cc ('k') | webrtc/video/vie_channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698