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

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

Issue 135653002: Update modules classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to web/ Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.h ('k') | Source/modules/webaudio/ChannelMergerNode.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 18 matching lines...) Expand all
29 #include "platform/audio/AudioDSPKernelProcessor.h" 29 #include "platform/audio/AudioDSPKernelProcessor.h"
30 #include "platform/audio/Biquad.h" 30 #include "platform/audio/Biquad.h"
31 #include "modules/webaudio/AudioNode.h" 31 #include "modules/webaudio/AudioNode.h"
32 #include "modules/webaudio/AudioParam.h" 32 #include "modules/webaudio/AudioParam.h"
33 #include "wtf/RefPtr.h" 33 #include "wtf/RefPtr.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
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 : public AudioDSPKernelProcessor { 39 class BiquadProcessor FINAL : public AudioDSPKernelProcessor {
40 public: 40 public:
41 enum FilterType { 41 enum FilterType {
42 LowPass = 0, 42 LowPass = 0,
43 HighPass = 1, 43 HighPass = 1,
44 BandPass = 2, 44 BandPass = 2,
45 LowShelf = 3, 45 LowShelf = 3,
46 HighShelf = 4, 46 HighShelf = 4,
47 Peaking = 5, 47 Peaking = 5,
48 Notch = 6, 48 Notch = 6,
49 Allpass = 7 49 Allpass = 7
50 }; 50 };
51 51
52 BiquadProcessor(AudioContext*, float sampleRate, size_t numberOfChannels, bo ol autoInitialize); 52 BiquadProcessor(AudioContext*, float sampleRate, size_t numberOfChannels, bo ol autoInitialize);
53 53
54 virtual ~BiquadProcessor(); 54 virtual ~BiquadProcessor();
55 55
56 virtual PassOwnPtr<AudioDSPKernel> createKernel(); 56 virtual PassOwnPtr<AudioDSPKernel> createKernel();
57 57
58 virtual void process(const AudioBus* source, AudioBus* destination, size_t f ramesToProcess); 58 virtual void process(const AudioBus* source, AudioBus* destination, size_t f ramesToProcess) OVERRIDE;
59 59
60 // Get the magnitude and phase response of the filter at the given 60 // Get the magnitude and phase response of the filter at the given
61 // set of frequencies (in Hz). The phase response is in radians. 61 // set of frequencies (in Hz). The phase response is in radians.
62 void getFrequencyResponse(int nFrequencies, 62 void getFrequencyResponse(int nFrequencies,
63 const float* frequencyHz, 63 const float* frequencyHz,
64 float* magResponse, 64 float* magResponse,
65 float* phaseResponse); 65 float* phaseResponse);
66 66
67 void checkForDirtyCoefficients(); 67 void checkForDirtyCoefficients();
68 68
(...skipping 19 matching lines...) Expand all
88 // so DSP kernels know when to re-compute coefficients 88 // so DSP kernels know when to re-compute coefficients
89 bool m_filterCoefficientsDirty; 89 bool m_filterCoefficientsDirty;
90 90
91 // Set to true if any of the filter parameters are sample-accurate. 91 // Set to true if any of the filter parameters are sample-accurate.
92 bool m_hasSampleAccurateValues; 92 bool m_hasSampleAccurateValues;
93 }; 93 };
94 94
95 } // namespace WebCore 95 } // namespace WebCore
96 96
97 #endif // BiquadProcessor_h 97 #endif // BiquadProcessor_h
OLDNEW
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.h ('k') | Source/modules/webaudio/ChannelMergerNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698