| 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 16 matching lines...) Expand all Loading... |
| 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/Allocator.h" | 35 #include "wtf/Allocator.h" |
| 36 | 36 |
| 37 #if ENABLE(WEB_AUDIO) | |
| 38 | |
| 39 namespace blink { | 37 namespace blink { |
| 40 | 38 |
| 41 // AudioDSPKernel does the processing for one channel of an AudioDSPKernelProces
sor. | 39 // AudioDSPKernel does the processing for one channel of an AudioDSPKernelProces
sor. |
| 42 | 40 |
| 43 class PLATFORM_EXPORT AudioDSPKernel { | 41 class PLATFORM_EXPORT AudioDSPKernel { |
| 44 USING_FAST_MALLOC(AudioDSPKernel); | 42 USING_FAST_MALLOC(AudioDSPKernel); |
| 45 public: | 43 public: |
| 46 AudioDSPKernel(AudioDSPKernelProcessor* kernelProcessor) | 44 AudioDSPKernel(AudioDSPKernelProcessor* kernelProcessor) |
| 47 : m_kernelProcessor(kernelProcessor) | 45 : m_kernelProcessor(kernelProcessor) |
| 48 , m_sampleRate(kernelProcessor->sampleRate()) | 46 , m_sampleRate(kernelProcessor->sampleRate()) |
| (...skipping 23 matching lines...) Expand all Loading... |
| 72 | 70 |
| 73 protected: | 71 protected: |
| 74 // This raw pointer is safe because the AudioDSPKernelProcessor object is | 72 // This raw pointer is safe because the AudioDSPKernelProcessor object is |
| 75 // guaranteed to be kept alive while the AudioDSPKernel object is alive. | 73 // guaranteed to be kept alive while the AudioDSPKernel object is alive. |
| 76 AudioDSPKernelProcessor* m_kernelProcessor; | 74 AudioDSPKernelProcessor* m_kernelProcessor; |
| 77 float m_sampleRate; | 75 float m_sampleRate; |
| 78 }; | 76 }; |
| 79 | 77 |
| 80 } // namespace blink | 78 } // namespace blink |
| 81 | 79 |
| 82 #endif // ENABLE(WEB_AUDIO) | |
| 83 | |
| 84 #endif // AudioDSPKernel_h | 80 #endif // AudioDSPKernel_h |
| OLD | NEW |