| Index: third_party/WebKit/Source/platform/audio/UpSampler.cpp
|
| diff --git a/third_party/WebKit/Source/platform/audio/UpSampler.cpp b/third_party/WebKit/Source/platform/audio/UpSampler.cpp
|
| index 2d2e04479849db3cec62494ceb114dad9eb71176..8b5e5a36d53557063080e69c48ce779788e842c1 100644
|
| --- a/third_party/WebKit/Source/platform/audio/UpSampler.cpp
|
| +++ b/third_party/WebKit/Source/platform/audio/UpSampler.cpp
|
| @@ -98,7 +98,8 @@ void UpSampler::process(const float* sourceP,
|
| float* inputP = m_inputBuffer.data() + sourceFramesToProcess;
|
| memcpy(inputP, sourceP, sizeof(float) * sourceFramesToProcess);
|
|
|
| - // Copy even sample-frames 0,2,4,6... (delayed by the linear phase delay) directly into destP.
|
| + // Copy even sample-frames 0,2,4,6... (delayed by the linear phase delay)
|
| + // directly into destP.
|
| for (unsigned i = 0; i < sourceFramesToProcess; ++i)
|
| destP[i * 2] = *((inputP - halfSize) + i);
|
|
|
| @@ -119,7 +120,8 @@ void UpSampler::reset() {
|
| }
|
|
|
| size_t UpSampler::latencyFrames() const {
|
| - // Divide by two since this is a linear phase kernel and the delay is at the center of the kernel.
|
| + // Divide by two since this is a linear phase kernel and the delay is at the
|
| + // center of the kernel.
|
| return m_kernel.size() / 2;
|
| }
|
|
|
|
|