Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(323)

Unified Diff: webrtc/common_audio/lapped_transform_unittest.cc

Issue 1172163004: Reformat existing code. There should be no functional effects. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698