| Index: Source/core/platform/audio/DirectConvolver.cpp
|
| diff --git a/Source/core/platform/audio/DirectConvolver.cpp b/Source/core/platform/audio/DirectConvolver.cpp
|
| index 43a3ab3d47ef0909c42c6f31a913f7f8afbc5a5c..5594dfbfb4755269a18fb8e57372b8bb3090358d 100644
|
| --- a/Source/core/platform/audio/DirectConvolver.cpp
|
| +++ b/Source/core/platform/audio/DirectConvolver.cpp
|
| @@ -41,7 +41,7 @@
|
| namespace WebCore {
|
|
|
| using namespace VectorMath;
|
| -
|
| +
|
| DirectConvolver::DirectConvolver(size_t inputBlockSize)
|
| : m_inputBlockSize(inputBlockSize)
|
| #if USE(WEBAUDIO_IPP)
|
| @@ -105,7 +105,7 @@ void DirectConvolver::process(AudioFloatArray* convolutionKernel, const float* s
|
| while (i < framesToProcess) {
|
| size_t j = 0;
|
| float sum = 0;
|
| -
|
| +
|
| // FIXME: SSE optimization may be applied here.
|
| if (kernelSize == 32) {
|
| CONVOLVE_ONE_SAMPLE // 1
|
|
|