| 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 20 matching lines...) Expand all Loading... |
| 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 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 // 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. |
| 38 | 38 |
| 39 class BiquadProcessor final : public AudioDSPKernelProcessor { | 39 class BiquadProcessor final : public AudioDSPKernelProcessor { |
| 40 public: | 40 public: |
| 41 // This values are used in histograms and should not be renumbered or delete
d. |
| 41 enum FilterType { | 42 enum FilterType { |
| 42 LowPass = 0, | 43 LowPass = 0, |
| 43 HighPass = 1, | 44 HighPass = 1, |
| 44 BandPass = 2, | 45 BandPass = 2, |
| 45 LowShelf = 3, | 46 LowShelf = 3, |
| 46 HighShelf = 4, | 47 HighShelf = 4, |
| 47 Peaking = 5, | 48 Peaking = 5, |
| 48 Notch = 6, | 49 Notch = 6, |
| 49 Allpass = 7 | 50 Allpass = 7 |
| 50 }; | 51 }; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // so DSP kernels know when to re-compute coefficients | 85 // so DSP kernels know when to re-compute coefficients |
| 85 bool m_filterCoefficientsDirty; | 86 bool m_filterCoefficientsDirty; |
| 86 | 87 |
| 87 // Set to true if any of the filter parameters are sample-accurate. | 88 // Set to true if any of the filter parameters are sample-accurate. |
| 88 bool m_hasSampleAccurateValues; | 89 bool m_hasSampleAccurateValues; |
| 89 }; | 90 }; |
| 90 | 91 |
| 91 } // namespace blink | 92 } // namespace blink |
| 92 | 93 |
| 93 #endif // BiquadProcessor_h | 94 #endif // BiquadProcessor_h |
| OLD | NEW |