| Index: third_party/WebKit/Source/platform/audio/UpSampler.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/UpSampler.h b/third_party/WebKit/Source/platform/audio/UpSampler.h
|
| index 6031c24e78f310dc70ebfd351578fc805d5d5068..2e951e36ca32f8b3a4d95f7893122e2112b92120 100644
|
| --- a/third_party/WebKit/Source/platform/audio/UpSampler.h
|
| +++ b/third_party/WebKit/Source/platform/audio/UpSampler.h
|
| @@ -62,8 +62,9 @@ class PLATFORM_EXPORT UpSampler {
|
|
|
| size_t m_inputBlockSize;
|
|
|
| - // Computes ideal band-limited filter coefficients to sample in between each source sample-frame.
|
| - // This filter will be used to compute the odd sample-frames of the output.
|
| + // Computes ideal band-limited filter coefficients to sample in between each
|
| + // source sample-frame. This filter will be used to compute the odd
|
| + // sample-frames of the output.
|
| void initializeKernel();
|
| AudioFloatArray m_kernel;
|
|
|
| @@ -73,8 +74,9 @@ class PLATFORM_EXPORT UpSampler {
|
| AudioFloatArray m_tempBuffer;
|
|
|
| // Delay line for generating the even sample-frames of the output.
|
| - // The source samples are delayed exactly to match the linear phase delay of the FIR filter (convolution)
|
| - // used to generate the odd sample-frames of the output.
|
| + // The source samples are delayed exactly to match the linear phase delay of
|
| + // the FIR filter (convolution) used to generate the odd sample-frames of the
|
| + // output.
|
| AudioFloatArray m_inputBuffer;
|
| };
|
|
|
|
|