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 14 matching lines...) Expand all Loading... |
25 #ifndef BiquadProcessor_h | 25 #ifndef BiquadProcessor_h |
26 #define BiquadProcessor_h | 26 #define BiquadProcessor_h |
27 | 27 |
28 #include "modules/webaudio/AudioNode.h" | 28 #include "modules/webaudio/AudioNode.h" |
29 #include "modules/webaudio/AudioParam.h" | 29 #include "modules/webaudio/AudioParam.h" |
30 #include "platform/audio/AudioDSPKernel.h" | 30 #include "platform/audio/AudioDSPKernel.h" |
31 #include "platform/audio/AudioDSPKernelProcessor.h" | 31 #include "platform/audio/AudioDSPKernelProcessor.h" |
32 #include "platform/audio/Biquad.h" | 32 #include "platform/audio/Biquad.h" |
33 #include "wtf/RefPtr.h" | 33 #include "wtf/RefPtr.h" |
34 | 34 |
35 #if ENABLE(WEB_AUDIO) | |
36 | |
37 namespace blink { | 35 namespace blink { |
38 | 36 |
39 // BiquadProcessor is an AudioDSPKernelProcessor which uses Biquad objects to im
plement several common filters. | 37 // BiquadProcessor is an AudioDSPKernelProcessor which uses Biquad objects to im
plement several common filters. |
40 | 38 |
41 class BiquadProcessor final : public AudioDSPKernelProcessor { | 39 class BiquadProcessor final : public AudioDSPKernelProcessor { |
42 public: | 40 public: |
43 enum FilterType { | 41 enum FilterType { |
44 LowPass = 0, | 42 LowPass = 0, |
45 HighPass = 1, | 43 HighPass = 1, |
46 BandPass = 2, | 44 BandPass = 2, |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 83 |
86 // so DSP kernels know when to re-compute coefficients | 84 // so DSP kernels know when to re-compute coefficients |
87 bool m_filterCoefficientsDirty; | 85 bool m_filterCoefficientsDirty; |
88 | 86 |
89 // Set to true if any of the filter parameters are sample-accurate. | 87 // Set to true if any of the filter parameters are sample-accurate. |
90 bool m_hasSampleAccurateValues; | 88 bool m_hasSampleAccurateValues; |
91 }; | 89 }; |
92 | 90 |
93 } // namespace blink | 91 } // namespace blink |
94 | 92 |
95 #endif // ENABLE(WEB_AUDIO) | |
96 | |
97 #endif // BiquadProcessor_h | 93 #endif // BiquadProcessor_h |
OLD | NEW |