| Index: third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| index 3df254b10f8cdf37c662a4bb63245625e8fed67d..6754331b2bf4ef0daa4d067b17d158d086ce8309 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| @@ -86,7 +86,8 @@ class RealtimeAnalyser final {
|
| std::unique_ptr<FFTFrame> m_analysisFrame;
|
| void doFFTAnalysis();
|
|
|
| - // Convert the contents of magnitudeBuffer to byte values, saving the result in |destination|.
|
| + // Convert the contents of magnitudeBuffer to byte values, saving the result
|
| + // in |destination|.
|
| void convertToByteData(DOMUint8Array* destination);
|
|
|
| // Convert magnidue buffer to dB, saving the result in |destination|
|
| @@ -96,7 +97,8 @@ class RealtimeAnalyser final {
|
| AudioFloatArray m_magnitudeBuffer;
|
| AudioFloatArray& magnitudeBuffer() { return m_magnitudeBuffer; }
|
|
|
| - // A value between 0 and 1 which averages the previous version of m_magnitudeBuffer with the current analysis magnitude data.
|
| + // A value between 0 and 1 which averages the previous version of
|
| + // m_magnitudeBuffer with the current analysis magnitude data.
|
| double m_smoothingTimeConstant;
|
|
|
| // The range used when converting when using getByteFrequencyData().
|
|
|