aboutsummaryrefslogtreecommitdiff
path: root/webrtc/tools/agc/agc_harness.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webrtc/tools/agc/agc_harness.cc')
-rw-r--r--webrtc/tools/agc/agc_harness.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/webrtc/tools/agc/agc_harness.cc b/webrtc/tools/agc/agc_harness.cc
index 73e1e09935..0d35d4b56a 100644
--- a/webrtc/tools/agc/agc_harness.cc
+++ b/webrtc/tools/agc/agc_harness.cc
@@ -12,10 +12,11 @@
#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"
-#include "webrtc/test/channel_transport/include/channel_transport.h"
+#include "webrtc/test/channel_transport/channel_transport.h"
#include "webrtc/test/testsupport/trace_to_stderr.h"
#include "webrtc/modules/audio_processing/include/audio_processing.h"
#include "webrtc/voice_engine/include/voe_audio_processing.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);
}
}