| Index: webrtc/common_audio/lapped_transform_unittest.cc
|
| diff --git a/webrtc/common_audio/lapped_transform_unittest.cc b/webrtc/common_audio/lapped_transform_unittest.cc
|
| index c30651c9a30af1e02b902b00cb6044fbe037e14c..60e2b5315d42e3d58586a59fb79f4f5e60a76d21 100644
|
| --- a/webrtc/common_audio/lapped_transform_unittest.cc
|
| +++ b/webrtc/common_audio/lapped_transform_unittest.cc
|
| @@ -25,7 +25,9 @@ class NoopCallback : public webrtc::LappedTransform::Callback {
|
| NoopCallback() : block_num_(0) {}
|
|
|
| virtual void ProcessAudioBlock(const complex<float>* const* in_block,
|
| - int in_channels, int frames, int out_channels,
|
| + int in_channels,
|
| + int frames,
|
| + int out_channels,
|
| complex<float>* const* out_block) {
|
| CHECK_EQ(in_channels, out_channels);
|
| for (int i = 0; i < out_channels; ++i) {
|
| @@ -47,7 +49,9 @@ class FftCheckerCallback : public webrtc::LappedTransform::Callback {
|
| FftCheckerCallback() : block_num_(0) {}
|
|
|
| virtual void ProcessAudioBlock(const complex<float>* const* in_block,
|
| - int in_channels, int frames, int out_channels,
|
| + int in_channels,
|
| + int frames,
|
| + int out_channels,
|
| complex<float>* const* out_block) {
|
| CHECK_EQ(in_channels, out_channels);
|
|
|
|
|