Index: Source/modules/webaudio/BiquadProcessor.h |
diff --git a/Source/modules/webaudio/BiquadProcessor.h b/Source/modules/webaudio/BiquadProcessor.h |
index d0f5622c2ab17357505610d444b33626878e69b4..15b2d1a052d8f9a0b9c1c8eb045098c3b0b22a47 100644 |
--- a/Source/modules/webaudio/BiquadProcessor.h |
+++ b/Source/modules/webaudio/BiquadProcessor.h |
@@ -52,9 +52,9 @@ public: |
BiquadProcessor(AudioContext*, float sampleRate, size_t numberOfChannels, bool autoInitialize); |
virtual ~BiquadProcessor(); |
- |
+ |
virtual PassOwnPtr<AudioDSPKernel> createKernel(); |
- |
+ |
virtual void process(const AudioBus* source, AudioBus* destination, size_t framesToProcess); |
// Get the magnitude and phase response of the filter at the given |
@@ -65,7 +65,7 @@ public: |
float* phaseResponse); |
void checkForDirtyCoefficients(); |
- |
+ |
bool filterCoefficientsDirty() const { return m_filterCoefficientsDirty; } |
bool hasSampleAccurateValues() const { return m_hasSampleAccurateValues; } |