| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010, Google Inc. All rights reserved. | 2 * Copyright (C) 2010, 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 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 #ifndef ChannelSplitterNode_h | 25 #ifndef ChannelSplitterNode_h |
| 26 #define ChannelSplitterNode_h | 26 #define ChannelSplitterNode_h |
| 27 | 27 |
| 28 #include "modules/webaudio/AudioNode.h" | 28 #include "modules/webaudio/AudioNode.h" |
| 29 #include "wtf/PassRefPtr.h" | 29 #include "wtf/PassRefPtr.h" |
| 30 | 30 |
| 31 #if ENABLE(WEB_AUDIO) | |
| 32 | |
| 33 namespace blink { | 31 namespace blink { |
| 34 | 32 |
| 35 class AbstractAudioContext; | 33 class AbstractAudioContext; |
| 36 | 34 |
| 37 class ChannelSplitterHandler final : public AudioHandler { | 35 class ChannelSplitterHandler final : public AudioHandler { |
| 38 public: | 36 public: |
| 39 static PassRefPtr<ChannelSplitterHandler> create(AudioNode&, float sampleRat
e, unsigned numberOfOutputs); | 37 static PassRefPtr<ChannelSplitterHandler> create(AudioNode&, float sampleRat
e, unsigned numberOfOutputs); |
| 40 | 38 |
| 41 // AudioHandler | 39 // AudioHandler |
| 42 void process(size_t framesToProcess) override; | 40 void process(size_t framesToProcess) override; |
| 43 | 41 |
| 44 private: | 42 private: |
| 45 ChannelSplitterHandler(AudioNode&, float sampleRate, unsigned numberOfOutput
s); | 43 ChannelSplitterHandler(AudioNode&, float sampleRate, unsigned numberOfOutput
s); |
| 46 }; | 44 }; |
| 47 | 45 |
| 48 class ChannelSplitterNode final : public AudioNode { | 46 class ChannelSplitterNode final : public AudioNode { |
| 49 DEFINE_WRAPPERTYPEINFO(); | 47 DEFINE_WRAPPERTYPEINFO(); |
| 50 public: | 48 public: |
| 51 static ChannelSplitterNode* create(AbstractAudioContext&, float sampleRate,
unsigned numberOfOutputs); | 49 static ChannelSplitterNode* create(AbstractAudioContext&, float sampleRate,
unsigned numberOfOutputs); |
| 52 | 50 |
| 53 private: | 51 private: |
| 54 ChannelSplitterNode(AbstractAudioContext&, float sampleRate, unsigned number
OfOutputs); | 52 ChannelSplitterNode(AbstractAudioContext&, float sampleRate, unsigned number
OfOutputs); |
| 55 }; | 53 }; |
| 56 | 54 |
| 57 } // namespace blink | 55 } // namespace blink |
| 58 | 56 |
| 59 #endif // ENABLE(WEB_AUDIO) | |
| 60 | |
| 61 #endif // ChannelSplitterNode_h | 57 #endif // ChannelSplitterNode_h |
| OLD | NEW |