1/*
2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef DynamicsCompressorKernel_h
30#define DynamicsCompressorKernel_h
31
32#include "AudioArray.h"
33#include <memory>
34#include <wtf/Vector.h>
35
36namespace WebCore {
37
38class DynamicsCompressorKernel {
39public:
40 DynamicsCompressorKernel(float sampleRate, unsigned numberOfChannels);
41
42 void setNumberOfChannels(unsigned);
43
44 // Performs stereo-linked compression.
45 void process(float* sourceChannels[],
46 float* destinationChannels[],
47 unsigned numberOfChannels,
48 unsigned framesToProcess,
49
50 float dbThreshold,
51 float dbKnee,
52 float ratio,
53 float attackTime,
54 float releaseTime,
55 float preDelayTime,
56 float dbPostGain,
57 float effectBlend,
58
59 float releaseZone1,
60 float releaseZone2,
61 float releaseZone3,
62 float releaseZone4
63 );
64
65 void reset();
66
67 unsigned latencyFrames() const { return m_lastPreDelayFrames; }
68
69 float sampleRate() const { return m_sampleRate; }
70
71 float meteringGain() const { return m_meteringGain; }
72
73protected:
74 float m_sampleRate;
75
76 float m_detectorAverage;
77 float m_compressorGain;
78
79 // Metering
80 float m_meteringReleaseK;
81 float m_meteringGain;
82
83 // Lookahead section.
84 enum { MaxPreDelayFrames = 1024 };
85 enum { MaxPreDelayFramesMask = MaxPreDelayFrames - 1 };
86 enum { DefaultPreDelayFrames = 256 }; // setPreDelayTime() will override this initial value
87 unsigned m_lastPreDelayFrames;
88 void setPreDelayTime(float);
89
90 Vector<std::unique_ptr<AudioFloatArray>> m_preDelayBuffers;
91 int m_preDelayReadIndex;
92 int m_preDelayWriteIndex;
93
94 float m_maxAttackCompressionDiffDb;
95
96 // Static compression curve.
97 float kneeCurve(float x, float k);
98 float saturate(float x, float k);
99 float slopeAt(float x, float k);
100 float kAtSlope(float desiredSlope);
101
102 float updateStaticCurveParameters(float dbThreshold, float dbKnee, float ratio);
103
104 // Amount of input change in dB required for 1 dB of output change.
105 // This applies to the portion of the curve above m_kneeThresholdDb (see below).
106 float m_ratio;
107 float m_slope; // Inverse ratio.
108
109 // The input to output change below the threshold is linear 1:1.
110 float m_linearThreshold;
111 float m_dbThreshold;
112
113 // m_dbKnee is the number of dB above the threshold before we enter the "ratio" portion of the curve.
114 // m_kneeThresholdDb = m_dbThreshold + m_dbKnee
115 // The portion between m_dbThreshold and m_kneeThresholdDb is the "soft knee" portion of the curve
116 // which transitions smoothly from the linear portion to the ratio portion.
117 float m_dbKnee;
118 float m_kneeThreshold;
119 float m_kneeThresholdDb;
120 float m_ykneeThresholdDb;
121
122 // Internal parameter for the knee portion of the curve.
123 float m_K;
124};
125
126} // namespace WebCore
127
128#endif // DynamicsCompressorKernel_h
129