| Index: Source/core/platform/audio/DirectConvolver.cpp
|
| diff --git a/Source/core/platform/audio/DirectConvolver.cpp b/Source/core/platform/audio/DirectConvolver.cpp
|
| index 5594dfbfb4755269a18fb8e57372b8bb3090358d..030719f53c3c26dee63c506c6c914cc964a7be53 100644
|
| --- a/Source/core/platform/audio/DirectConvolver.cpp
|
| +++ b/Source/core/platform/audio/DirectConvolver.cpp
|
| @@ -32,7 +32,7 @@
|
|
|
| #include "core/platform/audio/DirectConvolver.h"
|
|
|
| -#if OS(DARWIN)
|
| +#if OS(MACOSX)
|
| #include <Accelerate/Accelerate.h>
|
| #endif
|
|
|
| @@ -89,7 +89,7 @@ void DirectConvolver::process(AudioFloatArray* convolutionKernel, const float* s
|
| // Copy samples to 2nd half of input buffer.
|
| memcpy(inputP, sourceP, sizeof(float) * framesToProcess);
|
|
|
| -#if OS(DARWIN)
|
| +#if OS(MACOSX)
|
| #if defined(__ppc__) || defined(__i386__)
|
| conv(inputP - kernelSize + 1, 1, kernelP + kernelSize - 1, -1, destP, 1, framesToProcess, kernelSize);
|
| #else
|
| @@ -365,7 +365,7 @@ void DirectConvolver::process(AudioFloatArray* convolutionKernel, const float* s
|
| }
|
| destP[i++] = sum;
|
| }
|
| -#endif // OS(DARWIN)
|
| +#endif // OS(MACOSX)
|
|
|
| // Copy 2nd half of input buffer to 1st half.
|
| memcpy(m_buffer.data(), inputP, sizeof(float) * framesToProcess);
|
|
|