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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 14 matching lines...) Expand all Loading... |
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef AudioDSPKernel_h | 31 #ifndef AudioDSPKernel_h |
32 #define AudioDSPKernel_h | 32 #define AudioDSPKernel_h |
33 | 33 |
34 #include "platform/audio/AudioDSPKernelProcessor.h" | 34 #include "platform/audio/AudioDSPKernelProcessor.h" |
| 35 #include "wtf/FastAllocBase.h" |
35 | 36 |
36 namespace blink { | 37 namespace blink { |
37 | 38 |
38 // AudioDSPKernel does the processing for one channel of an AudioDSPKernelProces
sor. | 39 // AudioDSPKernel does the processing for one channel of an AudioDSPKernelProces
sor. |
39 | 40 |
40 class PLATFORM_EXPORT AudioDSPKernel { | 41 class PLATFORM_EXPORT AudioDSPKernel { |
| 42 WTF_MAKE_FAST_ALLOCATED(AudioDSPKernel); |
41 public: | 43 public: |
42 AudioDSPKernel(AudioDSPKernelProcessor* kernelProcessor) | 44 AudioDSPKernel(AudioDSPKernelProcessor* kernelProcessor) |
43 : m_kernelProcessor(kernelProcessor) | 45 : m_kernelProcessor(kernelProcessor) |
44 , m_sampleRate(kernelProcessor->sampleRate()) | 46 , m_sampleRate(kernelProcessor->sampleRate()) |
45 { | 47 { |
46 } | 48 } |
47 | 49 |
48 AudioDSPKernel(float sampleRate) | 50 AudioDSPKernel(float sampleRate) |
49 : m_kernelProcessor(nullptr) | 51 : m_kernelProcessor(nullptr) |
50 , m_sampleRate(sampleRate) | 52 , m_sampleRate(sampleRate) |
(...skipping 18 matching lines...) Expand all Loading... |
69 protected: | 71 protected: |
70 // This raw pointer is safe because the AudioDSPKernelProcessor object is | 72 // This raw pointer is safe because the AudioDSPKernelProcessor object is |
71 // guaranteed to be kept alive while the AudioDSPKernel object is alive. | 73 // guaranteed to be kept alive while the AudioDSPKernel object is alive. |
72 AudioDSPKernelProcessor* m_kernelProcessor; | 74 AudioDSPKernelProcessor* m_kernelProcessor; |
73 float m_sampleRate; | 75 float m_sampleRate; |
74 }; | 76 }; |
75 | 77 |
76 } // namespace blink | 78 } // namespace blink |
77 | 79 |
78 #endif // AudioDSPKernel_h | 80 #endif // AudioDSPKernel_h |
OLD | NEW |