| Index: third_party/WebKit/Source/modules/webaudio/GainNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/GainNode.cpp b/third_party/WebKit/Source/modules/webaudio/GainNode.cpp
|
| index 9d9cb3d77663966ecd829e59a9faad70908167dd..fcb2410d95958e575ec171eb3ae76576bbb8e44f 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/GainNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/GainNode.cpp
|
| @@ -37,9 +37,10 @@ GainHandler::GainHandler(AudioNode& node,
|
| : AudioHandler(NodeTypeGain, node, sampleRate),
|
| m_lastGain(1.0),
|
| m_gain(gain),
|
| - m_sampleAccurateGainValues(ProcessingSizeInFrames) // FIXME: can probably
|
| - // share temp buffer
|
| - // in context
|
| + m_sampleAccurateGainValues(
|
| + AudioUtilities::kRenderQuantumFrames) // FIXME: can probably
|
| + // share temp buffer
|
| + // in context
|
| {
|
| addInput();
|
| addOutput(1);
|
|
|