| 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 3becfe1381b91a1dbd9c5969c1c60ba5b6592eb6..a21398c2c9ad8e0aa6129b9e72b8407fdc1a822e 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);
|
|
|
|
|