| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, Google Inc. All rights reserved. | 2 * Copyright (C) 2011, Google Inc. 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 | 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND |
| 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 16 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE | 16 * ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE |
| 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 20 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 20 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH | 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
| 23 * DAMAGE. | 23 * DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef BiquadFilterNode_h | 26 #ifndef BiquadFilterNode_h |
| 27 #define BiquadFilterNode_h | 27 #define BiquadFilterNode_h |
| 28 | 28 |
| 29 #include "core/dom/DOMTypedArray.h" | 29 #include "core/dom/DOMTypedArray.h" |
| 30 #include "core/dom/NotShared.h" |
| 30 #include "modules/webaudio/AudioNode.h" | 31 #include "modules/webaudio/AudioNode.h" |
| 31 #include "modules/webaudio/BiquadProcessor.h" | 32 #include "modules/webaudio/BiquadProcessor.h" |
| 32 | 33 |
| 33 namespace blink { | 34 namespace blink { |
| 34 | 35 |
| 35 class BaseAudioContext; | 36 class BaseAudioContext; |
| 36 class AudioParam; | 37 class AudioParam; |
| 37 class BiquadFilterOptions; | 38 class BiquadFilterOptions; |
| 38 | 39 |
| 39 class BiquadFilterNode final : public AudioNode { | 40 class BiquadFilterNode final : public AudioNode { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 63 String type() const; | 64 String type() const; |
| 64 void setType(const String&); | 65 void setType(const String&); |
| 65 | 66 |
| 66 AudioParam* frequency() { return frequency_; } | 67 AudioParam* frequency() { return frequency_; } |
| 67 AudioParam* q() { return q_; } | 68 AudioParam* q() { return q_; } |
| 68 AudioParam* gain() { return gain_; } | 69 AudioParam* gain() { return gain_; } |
| 69 AudioParam* detune() { return detune_; } | 70 AudioParam* detune() { return detune_; } |
| 70 | 71 |
| 71 // Get the magnitude and phase response of the filter at the given | 72 // Get the magnitude and phase response of the filter at the given |
| 72 // set of frequencies (in Hz). The phase response is in radians. | 73 // set of frequencies (in Hz). The phase response is in radians. |
| 73 void getFrequencyResponse(const DOMFloat32Array* frequency_hz, | 74 void getFrequencyResponse(NotShared<const DOMFloat32Array> frequency_hz, |
| 74 DOMFloat32Array* mag_response, | 75 NotShared<DOMFloat32Array> mag_response, |
| 75 DOMFloat32Array* phase_response); | 76 NotShared<DOMFloat32Array> phase_response); |
| 76 | 77 |
| 77 private: | 78 private: |
| 78 BiquadFilterNode(BaseAudioContext&); | 79 BiquadFilterNode(BaseAudioContext&); |
| 79 | 80 |
| 80 BiquadProcessor* GetBiquadProcessor() const; | 81 BiquadProcessor* GetBiquadProcessor() const; |
| 81 bool setType(unsigned); // Returns true on success. | 82 bool setType(unsigned); // Returns true on success. |
| 82 | 83 |
| 83 Member<AudioParam> frequency_; | 84 Member<AudioParam> frequency_; |
| 84 Member<AudioParam> q_; | 85 Member<AudioParam> q_; |
| 85 Member<AudioParam> gain_; | 86 Member<AudioParam> gain_; |
| 86 Member<AudioParam> detune_; | 87 Member<AudioParam> detune_; |
| 87 }; | 88 }; |
| 88 | 89 |
| 89 } // namespace blink | 90 } // namespace blink |
| 90 | 91 |
| 91 #endif // BiquadFilterNode_h | 92 #endif // BiquadFilterNode_h |
| OLD | NEW |