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

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

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.cpp
diff --git a/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp b/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
index 5a9a6b3125dc908b363e46763ef7d4cf93c1d945..2303c08a7ab29929e4781e016c4272c150bde8e6 100644
--- a/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
+++ b/third_party/WebKit/Source/platform/audio/FFTConvolver.cpp
@@ -48,7 +48,8 @@ void FFTConvolver::process(FFTFrame* fftKernel,
size_t halfSize = fftSize() / 2;
// framesToProcess must be an exact multiple of halfSize,
- // or halfSize is a multiple of framesToProcess when halfSize > framesToProcess.
+ // or halfSize is a multiple of framesToProcess when halfSize >
+ // framesToProcess.
bool isGood = !(halfSize % framesToProcess && framesToProcess % halfSize);
ASSERT(isGood);
if (!isGood)
« no previous file with comments | « third_party/WebKit/Source/platform/audio/FFTConvolver.h ('k') | third_party/WebKit/Source/platform/audio/FFTFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698