Chromium Code Reviews| Index: third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
| diff --git a/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h b/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
| index f0bd8f3e5d2aa007a933ca66ebbed5496c34cfb4..5f6e0b7b7db857856ebf37b8774a1e646ea498b1 100644 |
| --- a/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
| +++ b/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
| @@ -110,7 +110,8 @@ class PLATFORM_EXPORT DynamicsCompressorKernel { |
| float ratio); |
| // Amount of input change in dB required for 1 dB of output change. |
| - // This applies to the portion of the curve above m_kneeThresholdDb (see below). |
| + // This applies to the portion of the curve above m_kneeThresholdDb (see |
| + // below). |
| float m_ratio; |
| float m_slope; // Inverse ratio. |
| @@ -118,9 +119,11 @@ class PLATFORM_EXPORT DynamicsCompressorKernel { |
| float m_linearThreshold; |
| float m_dbThreshold; |
| - // m_dbKnee is the number of dB above the threshold before we enter the "ratio" portion of the curve. |
| + // m_dbKnee is the number of dB above the threshold before we enter the |
| + // "ratio" portion of the curve. |
| // m_kneeThresholdDb = m_dbThreshold + m_dbKnee |
| - // The portion between m_dbThreshold and m_kneeThresholdDb is the "soft knee" portion of the curve |
| + // The portion between m_dbThreshold and m_kneeThresholdDb is the "soft knee" |
| + // portion of the curve |
|
dcheng
2016/10/03 01:21:04
Nit: merge
Nico
2016/10/03 02:15:24
Done.
|
| // which transitions smoothly from the linear portion to the ratio portion. |
| float m_dbKnee; |
| float m_kneeThreshold; |