Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/BiquadProcessor.h

Issue 1557363002: Remove the WEB_AUDIO compile time flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698