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

Unified Diff: third_party/WebKit/Source/platform/audio/FFTConvolver.h

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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: third_party/WebKit/Source/platform/audio/FFTConvolver.h
diff --git a/third_party/WebKit/Source/platform/audio/FFTConvolver.h b/third_party/WebKit/Source/platform/audio/FFTConvolver.h
index e416b5796ddf6930f948cd9eb1dbb5254a8fd645..5b6707a101e0ed543a365337eb47677f301f291a 100644
--- a/third_party/WebKit/Source/platform/audio/FFTConvolver.h
+++ b/third_party/WebKit/Source/platform/audio/FFTConvolver.h
@@ -44,9 +44,11 @@ class PLATFORM_EXPORT FFTConvolver {
// fftSize must be a power of two
FFTConvolver(size_t fftSize);
- // For now, with multiple calls to Process(), framesToProcess MUST add up EXACTLY to fftSize / 2
+ // For now, with multiple calls to Process(), framesToProcess MUST add up
+ // EXACTLY to fftSize / 2
//
- // FIXME: Later, we can do more sophisticated buffering to relax this requirement...
+ // FIXME: Later, we can do more sophisticated buffering to relax this
+ // requirement...
//
// The input to output latency is equal to fftSize / 2
//
@@ -70,7 +72,8 @@ class PLATFORM_EXPORT FFTConvolver {
// Stores output which we read a little at a time
AudioFloatArray m_outputBuffer;
- // Saves the 2nd half of the FFT buffer, so we can do an overlap-add with the 1st half of the next one
+ // Saves the 2nd half of the FFT buffer, so we can do an overlap-add with the
+ // 1st half of the next one
AudioFloatArray m_lastOverlapBuffer;
};

Powered by Google App Engine
This is Rietveld 408576698