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

Unified Diff: third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and prefix use counter names with WebAudio Created 4 years, 3 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/modules/webaudio/WaveShaperNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
index 44c9f628a280bbe51e596c5d0fcd7a09d18bbae6..c8637bb01f698c464ddf4e415a0e5b7477dbdc63 100644
--- a/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/WaveShaperNode.cpp
@@ -28,6 +28,7 @@
#include "modules/webaudio/AudioBasicProcessorHandler.h"
#include "modules/webaudio/BaseAudioContext.h"
#include "modules/webaudio/WaveShaperNode.h"
+#include "modules/webaudio/WaveShaperOptions.h"
#include "wtf/PtrUtil.h"
namespace blink {
@@ -52,26 +53,60 @@ WaveShaperNode* WaveShaperNode::create(BaseAudioContext& context, ExceptionState
return new WaveShaperNode(context);
}
+WaveShaperNode* WaveShaperNode::create(BaseAudioContext* context, const WaveShaperOptions& options, ExceptionState& exceptionState)
+{
+ WaveShaperNode* node = create(*context, exceptionState);
+
+ if (!node)
+ return nullptr;
+
+ node->handleChannelOptions(options, exceptionState);
+
+ if (options.hasCurve())
+ node->setCurve(options.curve(), exceptionState);
+ if (options.hasOversample())
+ node->setOversample(options.oversample());
+
+ return node;
+}
WaveShaperProcessor* WaveShaperNode::getWaveShaperProcessor() const
{
return static_cast<WaveShaperProcessor*>(static_cast<AudioBasicProcessorHandler&>(handler()).processor());
}
-void WaveShaperNode::setCurve(DOMFloat32Array* curve, ExceptionState& exceptionState)
+void WaveShaperNode::setCurveImpl(
+ const float* curveData, unsigned curveLength, ExceptionState& exceptionState)
{
DCHECK(isMainThread());
- if (curve && curve->length() < 2) {
+ if (curveData && curveLength < 2) {
exceptionState.throwDOMException(
InvalidAccessError,
ExceptionMessages::indexExceedsMinimumBound<unsigned>(
"curve length",
- curve->length(),
+ curveLength,
2));
return;
}
- getWaveShaperProcessor()->setCurve(curve);
+ getWaveShaperProcessor()->setCurve(curveData, curveLength);
+}
+
+void WaveShaperNode::setCurve(DOMFloat32Array* curve, ExceptionState& exceptionState)
+{
+ DCHECK(isMainThread());
+
+ if (curve)
+ setCurveImpl(curve->data(), curve->length(), exceptionState);
+ else
+ setCurveImpl(nullptr, 0, exceptionState);
+}
+
+void WaveShaperNode::setCurve(const Vector<float>& curve, ExceptionState& exceptionState)
+{
+ DCHECK(isMainThread());
+
+ setCurveImpl(curve.data(), curve.size(), exceptionState);
}
DOMFloat32Array* WaveShaperNode::curve()

Powered by Google App Engine
This is Rietveld 408576698