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

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

Issue 2102133002: Add constructors for WebAudio nodes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/AnalyserNode.cpp
diff --git a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.cpp b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.cpp
index 6f338076db244cc162dbacd7019f6143f39d9eda..e67ae066605584c2383899c465863989e7fcc4ef 100644
--- a/third_party/WebKit/Source/modules/webaudio/AnalyserNode.cpp
+++ b/third_party/WebKit/Source/modules/webaudio/AnalyserNode.cpp
@@ -26,6 +26,7 @@
#include "bindings/core/v8/ExceptionMessages.h"
#include "bindings/core/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
+#include "modules/webaudio/AnalyserOptions.h"
#include "modules/webaudio/AudioNodeInput.h"
#include "modules/webaudio/AudioNodeOutput.h"
@@ -100,6 +101,20 @@ void AnalyserHandler::setMaxDecibels(double k, ExceptionState& exceptionState)
}
}
+void AnalyserHandler::setMinMaxDecibels(double minDecibels, double maxDecibels, ExceptionState& exceptionState)
+{
+ if (minDecibels >= maxDecibels) {
+ exceptionState.throwDOMException(
+ IndexSizeError,
+ "maxDecibels (" + String::number(maxDecibels)
+ + ") must be greater than or equal to minDecibels "
+ + "( " + String::number(minDecibels) + ").");
+ return;
+ }
+ m_analyser.setMinDecibels(minDecibels);
+ m_analyser.setMaxDecibels(maxDecibels);
+}
+
void AnalyserHandler::setSmoothingTimeConstant(double k, ExceptionState& exceptionState)
{
if (k >= 0 && k <= 1) {
@@ -131,6 +146,30 @@ AnalyserNode* AnalyserNode::create(BaseAudioContext& context, ExceptionState& ex
return new AnalyserNode(context);
}
+AnalyserNode* AnalyserNode::create(BaseAudioContext* context, const AnalyserOptions& options, ExceptionState& exceptionState)
+{
+ DCHECK(isMainThread());
+
+ AnalyserNode* node = create(*context, exceptionState);
+
+ if (!node)
+ return node;
hongchan 2016/09/12 18:56:32 return nullptr;
+
+ node->handleChannelOptions(options, exceptionState);
+
+ if (options.hasFftSize())
+ node->setFftSize(options.fftSize(), exceptionState);
+
+ if (options.hasSmoothingTimeConstant())
+ node->setSmoothingTimeConstant(options.smoothingTimeConstant(), exceptionState);
+
+ // minDecibels and maxDecibels have default values. Set both of the values
+ // at once.
+ node->setMinMaxDecibels(options.minDecibels(), options.maxDecibels(), exceptionState);
+
+ return node;
+}
+
AnalyserHandler& AnalyserNode::analyserHandler() const
{
return static_cast<AnalyserHandler&>(handler());
@@ -166,6 +205,11 @@ void AnalyserNode::setMaxDecibels(double max, ExceptionState& exceptionState)
analyserHandler().setMaxDecibels(max, exceptionState);
}
+void AnalyserNode::setMinMaxDecibels(double min, double max, ExceptionState& exceptionState)
+{
+ analyserHandler().setMinMaxDecibels(min, max, exceptionState);
+}
+
double AnalyserNode::maxDecibels() const
{
return analyserHandler().maxDecibels();

Powered by Google App Engine
This is Rietveld 408576698