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}
This commit is contained in:
andrew 2015-07-24 17:10:52 -07:00 committed by Commit bot
parent e2b34b7b4b
commit 7a1c24fce5

View File

@ -41,11 +41,11 @@ void FloatS16ToFloat(const float* src, size_t size, float* dest) {
template <>
void DownmixInterleavedToMono<int16_t>(const int16_t* interleaved,
int num_multichannel_frames,
int num_frames,
int num_channels,
int16_t* deinterleaved) {
DownmixInterleavedToMonoImpl<int16_t, int32_t>(
interleaved, num_multichannel_frames, num_channels, deinterleaved);
DownmixInterleavedToMonoImpl<int16_t, int32_t>(interleaved, num_frames,
num_channels, deinterleaved);
}
} // namespace webrtc