aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gainnode.rs
diff options
context:
space:
mode:
authorFernando Jiménez Moreno <ferjmoreno@gmail.com>2018-06-29 14:41:58 +0200
committerFernando Jiménez Moreno <ferjmoreno@gmail.com>2018-07-30 14:21:41 +0200
commit02c39eb9efd7baa30f801cba414c76e066885adc (patch)
treeb5335bc9b68a0f651ad83b82c7762fd10d65381a /components/script/dom/gainnode.rs
parent986c2f78424c88dcbab23c2f985ec48a5853407d (diff)
downloadservo-02c39eb9efd7baa30f801cba414c76e066885adc.tar.gz
servo-02c39eb9efd7baa30f801cba414c76e066885adc.zip
GainNode
Diffstat (limited to 'components/script/dom/gainnode.rs')
-rw-r--r--components/script/dom/gainnode.rs97
1 files changed, 97 insertions, 0 deletions
diff --git a/components/script/dom/gainnode.rs b/components/script/dom/gainnode.rs
new file mode 100644
index 00000000000..ab146b42a4f
--- /dev/null
+++ b/components/script/dom/gainnode.rs
@@ -0,0 +1,97 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v.2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use dom::audionode::AudioNode;
+use dom::audioparam::{AudioParam, AudioParamImpl};
+use dom::baseaudiocontext::BaseAudioContext;
+use dom::bindings::codegen::Bindings::AudioParamBinding::AutomationRate;
+use dom::bindings::codegen::Bindings::AudioNodeBinding::AudioNodeOptions;
+use dom::bindings::codegen::Bindings::AudioNodeBinding::{ChannelCountMode, ChannelInterpretation};
+use dom::bindings::codegen::Bindings::GainNodeBinding::{self, GainNodeMethods, GainOptions};
+use dom::bindings::error::Fallible;
+use dom::bindings::reflector::reflect_dom_object;
+use dom::bindings::root::DomRoot;
+use dom::window::Window;
+use dom_struct::dom_struct;
+use servo_media::audio::context::AudioContext;
+use servo_media::audio::gain_node::{GainNodeMessage, GainNodeOptions};
+use servo_media::audio::graph::NodeId;
+use servo_media::audio::node::{AudioNodeMessage, AudioNodeType};
+use servo_media::audio::param::{UserAutomationEvent, RampKind};
+use std::f32;
+use std::rc::Rc;
+
+audio_param_impl!(Gain, GainNode, GainNodeMessage, SetGain);
+
+#[dom_struct]
+pub struct GainNode {
+ node: AudioNode,
+ gain: DomRoot<AudioParam>,
+}
+
+impl GainNode {
+ #[allow(unsafe_code)]
+ #[allow(unrooted_must_root)]
+ pub fn new_inherited(
+ window: &Window,
+ context: &BaseAudioContext,
+ gain_options: &GainOptions,
+ ) -> GainNode {
+ let mut node_options = unsafe { AudioNodeOptions::empty(window.get_cx()) };
+ node_options.channelCount = Some(2);
+ node_options.channelCountMode = Some(ChannelCountMode::Max);
+ node_options.channelInterpretation = Some(ChannelInterpretation::Speakers);
+ let node = AudioNode::new_inherited(
+ AudioNodeType::GainNode(gain_options.into()),
+ None,
+ context,
+ &node_options,
+ 1, // inputs
+ 1, // outputs
+ );
+ let gain = Gain::new(context.audio_context_impl(), node.node_id());
+ let gain = AudioParam::new(window,
+ Box::new(gain),
+ AutomationRate::A_rate,
+ 1., // default value
+ f32::MIN, // min value
+ f32::MAX, // max value
+ );
+ GainNode {
+ node,
+ gain
+ }
+ }
+
+ #[allow(unrooted_must_root)]
+ pub fn new(window: &Window,
+ context: &BaseAudioContext,
+ options: &GainOptions
+ ) -> DomRoot<GainNode> {
+ let node = GainNode::new_inherited(window, context, options);
+ reflect_dom_object(Box::new(node), window, GainNodeBinding::Wrap)
+ }
+
+ pub fn Constructor(
+ window: &Window,
+ context: &BaseAudioContext,
+ options: &GainOptions,
+ ) -> Fallible<DomRoot<GainNode>> {
+ Ok(GainNode::new(window, context, options))
+ }
+}
+
+impl GainNodeMethods for GainNode {
+ fn Gain(&self) -> DomRoot<AudioParam> {
+ DomRoot::from_ref(&self.gain)
+ }
+}
+
+impl<'a> From<&'a GainOptions> for GainNodeOptions {
+ fn from(options: &'a GainOptions) -> Self {
+ Self {
+ gain: *options.gain,
+ }
+ }
+}