Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1078)

Unified Diff: third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h

Issue 2384073002: reflow comments in platform/audio (Closed)
Patch Set: comments (heh!) Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..1e1e6cb670ec32975704f15369b5d6ef5a3d24cd 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,10 +119,12 @@ 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
- // which transitions smoothly from the linear portion to the ratio portion.
+ // The portion between m_dbThreshold and m_kneeThresholdDb is the "soft knee"
+ // portion of the curve which transitions smoothly from the linear portion to
+ // the ratio portion.
float m_dbKnee;
float m_kneeThreshold;
float m_kneeThresholdDb;

Powered by Google App Engine
This is Rietveld 408576698