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

Unified Diff: Source/modules/webaudio/WaveShaperDSPKernel.cpp

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 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
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/WaveShaperNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/WaveShaperDSPKernel.cpp
diff --git a/Source/modules/webaudio/WaveShaperDSPKernel.cpp b/Source/modules/webaudio/WaveShaperDSPKernel.cpp
index 9a336fd69938d9fc82c58ed99b2559d5c9ab0d6e..717911103f099bb0352feb1815228f2f8b8abbc3 100644
--- a/Source/modules/webaudio/WaveShaperDSPKernel.cpp
+++ b/Source/modules/webaudio/WaveShaperDSPKernel.cpp
@@ -77,7 +77,7 @@ void WaveShaperDSPKernel::processCurve(const float* source, float* destination,
{
ASSERT(source && destination && waveShaperProcessor());
- Float32Array* curve = waveShaperProcessor()->curve();
+ DOMFloat32Array* curve = waveShaperProcessor()->curve();
if (!curve) {
// Act as "straight wire" pass-through if no curve is set.
memcpy(destination, source, sizeof(float) * framesToProcess);
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/WaveShaperNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698