| Index: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp
|
| index 382689b6714d6e1e99a1128ac255c74e15788235..519130e10509ffe2d7b3fca963b1f6c7c48a7dc5 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.cpp
|
| @@ -74,6 +74,13 @@ void StereoPannerHandler::process(size_t framesToProcess) {
|
| }
|
| }
|
|
|
| +void StereoPannerHandler::processAudioParams(size_t framesToProcess) {
|
| + float values[AudioUtilities::kRenderQuantumFrames];
|
| + DCHECK_LE(framesToProcess, AudioUtilities::kRenderQuantumFrames);
|
| +
|
| + m_pan->calculateSampleAccurateValues(values, framesToProcess);
|
| +}
|
| +
|
| void StereoPannerHandler::initialize() {
|
| if (isInitialized())
|
| return;
|
|
|