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

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

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef AudioParamTimeline_h 29 #ifndef AudioParamTimeline_h
30 #define AudioParamTimeline_h 30 #define AudioParamTimeline_h
31 31
32 #include "core/dom/DOMTypedArray.h" 32 #include "core/dom/DOMTypedArray.h"
33 #include "modules/webaudio/AbstractAudioContext.h" 33 #include "modules/webaudio/BaseAudioContext.h"
34 #include "wtf/Forward.h" 34 #include "wtf/Forward.h"
35 #include "wtf/Threading.h" 35 #include "wtf/Threading.h"
36 #include "wtf/Vector.h" 36 #include "wtf/Vector.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 class AudioParamTimeline { 40 class AudioParamTimeline {
41 DISALLOW_NEW(); 41 DISALLOW_NEW();
42 public: 42 public:
43 AudioParamTimeline() 43 AudioParamTimeline()
44 { 44 {
45 } 45 }
46 46
47 void setValueAtTime(float value, double time, ExceptionState&); 47 void setValueAtTime(float value, double time, ExceptionState&);
48 void linearRampToValueAtTime(float value, double time, ExceptionState&); 48 void linearRampToValueAtTime(float value, double time, ExceptionState&);
49 void exponentialRampToValueAtTime(float value, double time, ExceptionState&) ; 49 void exponentialRampToValueAtTime(float value, double time, ExceptionState&) ;
50 void setTargetAtTime(float target, double time, double timeConstant, Excepti onState&); 50 void setTargetAtTime(float target, double time, double timeConstant, Excepti onState&);
51 void setValueCurveAtTime(DOMFloat32Array* curve, double time, double duratio n, ExceptionState&); 51 void setValueCurveAtTime(DOMFloat32Array* curve, double time, double duratio n, ExceptionState&);
52 void cancelScheduledValues(double startTime, ExceptionState&); 52 void cancelScheduledValues(double startTime, ExceptionState&);
53 53
54 // hasValue is set to true if a valid timeline value is returned. 54 // hasValue is set to true if a valid timeline value is returned.
55 // otherwise defaultValue is returned. 55 // otherwise defaultValue is returned.
56 float valueForContextTime(AbstractAudioContext*, float defaultValue, bool& h asValue); 56 float valueForContextTime(BaseAudioContext*, float defaultValue, bool& hasVa lue);
57 57
58 // Given the time range in frames, calculates parameter values into the valu es buffer and 58 // Given the time range in frames, calculates parameter values into the valu es buffer and
59 // returns the last parameter value calculated for "values" or the defaultVa lue if none were 59 // returns the last parameter value calculated for "values" or the defaultVa lue if none were
60 // calculated. controlRate is the rate (number per second) at which paramet er values will be 60 // calculated. controlRate is the rate (number per second) at which paramet er values will be
61 // calculated. It should equal sampleRate for sample-accurate parameter cha nges, and otherwise 61 // calculated. It should equal sampleRate for sample-accurate parameter cha nges, and otherwise
62 // will usually match the render quantum size such that the parameter value changes once per 62 // will usually match the render quantum size such that the parameter value changes once per
63 // render quantum. 63 // render quantum.
64 float valuesForFrameRange(size_t startFrame, size_t endFrame, float defaultV alue, float* values, unsigned numberOfValues, double sampleRate, double controlR ate); 64 float valuesForFrameRange(size_t startFrame, size_t endFrame, float defaultV alue, float* values, unsigned numberOfValues, double sampleRate, double controlR ate);
65 65
66 // Returns true if this AudioParam has any events on it. 66 // Returns true if this AudioParam has any events on it.
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 // Produce a nice string describing the event in human-readable form. 118 // Produce a nice string describing the event in human-readable form.
119 String eventToString(const ParamEvent&); 119 String eventToString(const ParamEvent&);
120 Vector<ParamEvent> m_events; 120 Vector<ParamEvent> m_events;
121 121
122 mutable Mutex m_eventsLock; 122 mutable Mutex m_eventsLock;
123 }; 123 };
124 124
125 } // namespace blink 125 } // namespace blink
126 126
127 #endif // AudioParamTimeline_h 127 #endif // AudioParamTimeline_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698