| 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)
|
|
|