| Index: webrtc/voice_engine/output_mixer.cc
|
| diff --git a/webrtc/voice_engine/output_mixer.cc b/webrtc/voice_engine/output_mixer.cc
|
| index d3a4f7fc8f98f62c69fbc10c4a4e6d4a45599734..0dacf35eafabb3744f48f7762f4c6095ff7565d1 100644
|
| --- a/webrtc/voice_engine/output_mixer.cc
|
| +++ b/webrtc/voice_engine/output_mixer.cc
|
| @@ -10,6 +10,7 @@
|
|
|
| #include "webrtc/voice_engine/output_mixer.h"
|
|
|
| +#include "webrtc/base/format_macros.h"
|
| #include "webrtc/modules/audio_processing/include/audio_processing.h"
|
| #include "webrtc/modules/utility/include/audio_frame_operations.h"
|
| #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
|
| @@ -462,11 +463,12 @@ int OutputMixer::StopRecordingPlayout()
|
| }
|
|
|
| int OutputMixer::GetMixedAudio(int sample_rate_hz,
|
| - int num_channels,
|
| + size_t num_channels,
|
| AudioFrame* frame) {
|
| - WEBRTC_TRACE(kTraceStream, kTraceVoice, VoEId(_instanceId,-1),
|
| - "OutputMixer::GetMixedAudio(sample_rate_hz=%d, num_channels=%d)",
|
| - sample_rate_hz, num_channels);
|
| + WEBRTC_TRACE(
|
| + kTraceStream, kTraceVoice, VoEId(_instanceId,-1),
|
| + "OutputMixer::GetMixedAudio(sample_rate_hz=%d, num_channels=%" PRIuS ")",
|
| + sample_rate_hz, num_channels);
|
|
|
| // --- Record playout if enabled
|
| {
|
|
|