| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012, Intel Corporation. All rights reserved. | 2 * Copyright (C) 2012, Intel Corporation. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| 11 * documentation and/or other materials provided with the distribution. | 11 * documentation and/or other materials provided with the distribution. |
| 12 * | 12 * |
| 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN
Y | 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN
Y |
| 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN
Y | 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN
Y |
| 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O
N | 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O
N |
| 20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #include "modules/webaudio/AudioBasicInspectorNode.h" | 25 #include "modules/webaudio/AudioBasicInspectorNode.h" |
| 26 #include "modules/webaudio/AbstractAudioContext.h" | |
| 27 #include "modules/webaudio/AudioNodeInput.h" | 26 #include "modules/webaudio/AudioNodeInput.h" |
| 28 #include "modules/webaudio/AudioNodeOutput.h" | 27 #include "modules/webaudio/AudioNodeOutput.h" |
| 28 #include "modules/webaudio/BaseAudioContext.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 AudioBasicInspectorHandler::AudioBasicInspectorHandler(NodeType nodeType, AudioN
ode& node, float sampleRate, unsigned outputChannelCount) | 32 AudioBasicInspectorHandler::AudioBasicInspectorHandler(NodeType nodeType, AudioN
ode& node, float sampleRate, unsigned outputChannelCount) |
| 33 : AudioHandler(nodeType, node, sampleRate) | 33 : AudioHandler(nodeType, node, sampleRate) |
| 34 , m_needAutomaticPull(false) | 34 , m_needAutomaticPull(false) |
| 35 { | 35 { |
| 36 addInput(); | 36 addInput(); |
| 37 addOutput(outputChannelCount); | 37 addOutput(outputChannelCount); |
| 38 } | 38 } |
| 39 | 39 |
| 40 // We override pullInputs() as an optimization allowing this node to take advant
age of in-place processing, | 40 // We override pullInputs() as an optimization allowing this node to take advant
age of in-place processing, |
| 41 // where the input is simply passed through unprocessed to the output. | 41 // where the input is simply passed through unprocessed to the output. |
| 42 // Note: this only applies if the input and output channel counts match. | 42 // Note: this only applies if the input and output channel counts match. |
| 43 void AudioBasicInspectorHandler::pullInputs(size_t framesToProcess) | 43 void AudioBasicInspectorHandler::pullInputs(size_t framesToProcess) |
| 44 { | 44 { |
| 45 // Render input stream - try to render directly into output bus for pass-thr
ough processing where process() doesn't need to do anything... | 45 // Render input stream - try to render directly into output bus for pass-thr
ough processing where process() doesn't need to do anything... |
| 46 input(0).pull(output(0).bus(), framesToProcess); | 46 input(0).pull(output(0).bus(), framesToProcess); |
| 47 } | 47 } |
| 48 | 48 |
| 49 AudioNode* AudioBasicInspectorNode::connect(AudioNode* destination, unsigned out
putIndex, unsigned inputIndex, ExceptionState& exceptionState) | 49 AudioNode* AudioBasicInspectorNode::connect(AudioNode* destination, unsigned out
putIndex, unsigned inputIndex, ExceptionState& exceptionState) |
| 50 { | 50 { |
| 51 ASSERT(isMainThread()); | 51 ASSERT(isMainThread()); |
| 52 | 52 |
| 53 AbstractAudioContext::AutoLocker locker(context()); | 53 BaseAudioContext::AutoLocker locker(context()); |
| 54 | 54 |
| 55 AudioNode::connect(destination, outputIndex, inputIndex, exceptionState); | 55 AudioNode::connect(destination, outputIndex, inputIndex, exceptionState); |
| 56 static_cast<AudioBasicInspectorHandler&>(handler()).updatePullStatus(); | 56 static_cast<AudioBasicInspectorHandler&>(handler()).updatePullStatus(); |
| 57 | 57 |
| 58 return destination; | 58 return destination; |
| 59 } | 59 } |
| 60 | 60 |
| 61 void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& e
xceptionState) | 61 void AudioBasicInspectorNode::disconnect(unsigned outputIndex, ExceptionState& e
xceptionState) |
| 62 { | 62 { |
| 63 ASSERT(isMainThread()); | 63 ASSERT(isMainThread()); |
| 64 | 64 |
| 65 AbstractAudioContext::AutoLocker locker(context()); | 65 BaseAudioContext::AutoLocker locker(context()); |
| 66 | 66 |
| 67 AudioNode::disconnect(outputIndex, exceptionState); | 67 AudioNode::disconnect(outputIndex, exceptionState); |
| 68 static_cast<AudioBasicInspectorHandler&>(handler()).updatePullStatus(); | 68 static_cast<AudioBasicInspectorHandler&>(handler()).updatePullStatus(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 void AudioBasicInspectorHandler::checkNumberOfChannelsForInput(AudioNodeInput* i
nput) | 71 void AudioBasicInspectorHandler::checkNumberOfChannelsForInput(AudioNodeInput* i
nput) |
| 72 { | 72 { |
| 73 ASSERT(context()->isAudioThread()); | 73 ASSERT(context()->isAudioThread()); |
| 74 ASSERT(context()->isGraphOwner()); | 74 ASSERT(context()->isGraphOwner()); |
| 75 | 75 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } else if (!numberOfInputConnections && m_needAutomaticPull) { | 110 } else if (!numberOfInputConnections && m_needAutomaticPull) { |
| 111 // The AudioBasicInspectorNode is connected to nothing, remove it fr
om the context's automatic pull list. | 111 // The AudioBasicInspectorNode is connected to nothing, remove it fr
om the context's automatic pull list. |
| 112 context()->deferredTaskHandler().removeAutomaticPullNode(this); | 112 context()->deferredTaskHandler().removeAutomaticPullNode(this); |
| 113 m_needAutomaticPull = false; | 113 m_needAutomaticPull = false; |
| 114 } | 114 } |
| 115 } | 115 } |
| 116 } | 116 } |
| 117 | 117 |
| 118 } // namespace blink | 118 } // namespace blink |
| 119 | 119 |
| OLD | NEW |