| Index: Source/WebCore/platform/audio/FFTFrame.cpp
|
| diff --git a/Source/WebCore/platform/audio/FFTFrame.cpp b/Source/WebCore/platform/audio/FFTFrame.cpp
|
| index 281595851c7c7b5a7c2b5db4490f5d8414325ecc..0ae08c5b68f8c1727d69b0a9fd969461b94adeb8 100644
|
| --- a/Source/WebCore/platform/audio/FFTFrame.cpp
|
| +++ b/Source/WebCore/platform/audio/FFTFrame.cpp
|
| @@ -309,8 +309,8 @@ void FFTFrame::print()
|
| FFTFrame& frame = *this;
|
| float* realP = frame.realData();
|
| float* imagP = frame.imagData();
|
| - LOG(WebAudio, "**** \n");
|
| - LOG(WebAudio, "DC = %f : nyquist = %f\n", realP[0], imagP[0]);
|
| + LOG_INFO(WebAudio, "**** \n");
|
| + LOG_INFO(WebAudio, "DC = %f : nyquist = %f\n", realP[0], imagP[0]);
|
|
|
| int n = m_FFTSize / 2;
|
|
|
| @@ -318,9 +318,9 @@ void FFTFrame::print()
|
| double mag = sqrt(realP[i] * realP[i] + imagP[i] * imagP[i]);
|
| double phase = atan2(realP[i], imagP[i]);
|
|
|
| - LOG(WebAudio, "[%d] (%f %f)\n", i, mag, phase);
|
| + LOG_INFO(WebAudio, "[%d] (%f %f)\n", i, mag, phase);
|
| }
|
| - LOG(WebAudio, "****\n");
|
| + LOG_INFO(WebAudio, "****\n");
|
| }
|
| #endif // NDEBUG
|
|
|
|
|