From 7a1c24fce5d8cfaa56d548fe72b496a8c6e4e99e Mon Sep 17 00:00:00 2001 From: andrew Date: Fri, 24 Jul 2015 17:10:52 -0700 Subject: [PATCH] Remove "multichannel" from parameter to match interface name. TBR=mgraczyk@google.com Review URL: https://codereview.webrtc.org/1250423004 Cr-Commit-Position: refs/heads/master@{#9635} --- webrtc/common_audio/audio_util.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webrtc/common_audio/audio_util.cc b/webrtc/common_audio/audio_util.cc index be67c48f60..b330b944f1 100644 --- a/webrtc/common_audio/audio_util.cc +++ b/webrtc/common_audio/audio_util.cc @@ -41,11 +41,11 @@ void FloatS16ToFloat(const float* src, size_t size, float* dest) { template <> void DownmixInterleavedToMono(const int16_t* interleaved, - int num_multichannel_frames, + int num_frames, int num_channels, int16_t* deinterleaved) { - DownmixInterleavedToMonoImpl( - interleaved, num_multichannel_frames, num_channels, deinterleaved); + DownmixInterleavedToMonoImpl(interleaved, num_frames, + num_channels, deinterleaved); } } // namespace webrtc