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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioContext.idl

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) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
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
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y 14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y 17 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
21 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 enum AudioContextState {
27 "suspended",
28 "running",
29 "closed"
30 };
31
32 [ 26 [
33 ActiveScriptWrappable, 27 ActiveScriptWrappable,
34 Constructor, 28 Constructor,
35 ConstructorCallWith=Document, 29 ConstructorCallWith=Document,
36 DependentLifetime, 30 DependentLifetime,
37 GarbageCollected, 31 GarbageCollected,
38 ImplementedAs=AbstractAudioContext,
39 NoInterfaceObject, 32 NoInterfaceObject,
40 RaisesException=Constructor, 33 RaisesException=Constructor,
41 ] interface AudioContext : EventTarget { 34 ] interface AudioContext : BaseAudioContext {
42 // All rendered audio ultimately connects to destination, which represents t he audio hardware.
43 readonly attribute AudioDestinationNode destination;
44
45 // All scheduled times are relative to this time in seconds.
46 readonly attribute double currentTime;
47
48 // All AudioNodes in the context run at this sample-rate (sample-frames per second).
49 readonly attribute float sampleRate;
50
51 // All panning is relative to this listener.
52 readonly attribute AudioListener listener;
53
54 // Current state of the AudioContext
55 readonly attribute AudioContextState state;
56
57 [RaisesException] AudioBuffer createBuffer(unsigned long numberOfChannels, u nsigned long numberOfFrames, float sampleRate);
58
59 // Asynchronous audio file data decoding.
60 [RaisesException, MeasureAs=AudioContextDecodeAudioData, CallWith=ScriptStat e] Promise<AudioBuffer> decodeAudioData(ArrayBuffer audioData, optional AudioBuf ferCallback successCallback, optional AudioBufferCallback errorCallback);
61
62 // Sources 35 // Sources
63 [RaisesException, MeasureAs=AudioContextCreateBufferSource] AudioBufferSourc eNode createBufferSource();
64
65 [RaisesException, MeasureAs=AudioContextCreateMediaElementSource] MediaEleme ntAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement); 36 [RaisesException, MeasureAs=AudioContextCreateMediaElementSource] MediaEleme ntAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement);
66 37
67 [RaisesException, MeasureAs=AudioContextCreateMediaStreamSource] MediaStream AudioSourceNode createMediaStreamSource(MediaStream mediaStream); 38 [RaisesException, MeasureAs=AudioContextCreateMediaStreamSource] MediaStream AudioSourceNode createMediaStreamSource(MediaStream mediaStream);
68 [RaisesException, MeasureAs=AudioContextCreateMediaStreamDestination] MediaS treamAudioDestinationNode createMediaStreamDestination(); 39 [RaisesException, MeasureAs=AudioContextCreateMediaStreamDestination] MediaS treamAudioDestinationNode createMediaStreamDestination();
69 40
70 // Processing nodes
71 [RaisesException, MeasureAs=AudioContextCreateGain] GainNode createGain();
72 [RaisesException, MeasureAs=AudioContextCreateDelay] DelayNode createDelay(o ptional double maxDelayTime);
73 [RaisesException, MeasureAs=AudioContextCreateBiquadFilter] BiquadFilterNode createBiquadFilter();
74 [RaisesException, MeasureAs=AudioContextCreateIIRFilter] IIRFilterNode creat eIIRFilter(sequence<double> feedForward, sequence<double> feedBack);
75 [RaisesException, MeasureAs=AudioContextCreateWaveShaper] WaveShaperNode cre ateWaveShaper();
76 [RaisesException, MeasureAs=AudioContextCreatePanner] PannerNode createPanne r();
77 [RaisesException, MeasureAs=AudioContextCreateConvolver] ConvolverNode creat eConvolver();
78 [RaisesException, MeasureAs=AudioContextCreateDynamicsCompressor] DynamicsCo mpressorNode createDynamicsCompressor();
79 [RaisesException, MeasureAs=AudioContextCreateAnalyser] AnalyserNode createA nalyser();
80 [RaisesException, MeasureAs=AudioContextCreateScriptProcessor] ScriptProcess orNode createScriptProcessor(optional unsigned long bufferSize, optional unsigne d long numberOfInputChannels, optional unsigned long numberOfOutputChannels);
81 [RaisesException, MeasureAs=AudioContextCreateStereoPanner] StereoPannerNode createStereoPanner();
82 [RaisesException, MeasureAs=AudioContextCreateOscillator] OscillatorNode cre ateOscillator();
83 [RaisesException, MeasureAs=AudioContextCreatePeriodicWave] PeriodicWave cre atePeriodicWave(Float32Array real, Float32Array imag, optional Dictionary option s);
84
85 // Channel splitting and merging
86 [RaisesException, MeasureAs=AudioContextCreateChannelSplitter] ChannelSplitt erNode createChannelSplitter(optional unsigned long numberOfOutputs);
87 [RaisesException, MeasureAs=AudioContextCreateChannelMerger] ChannelMergerNo de createChannelMerger(optional unsigned long numberOfInputs);
88
89 // Close
90 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte xt] Promise<void> close();
91
92 // Pause/resume
93 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC ontext] Promise<void> suspend();
94 [MeasureAs=AudioContextResume, CallWith=ScriptState, ImplementedAs=resumeCon text] Promise<void> resume();
95
96 attribute EventHandler onstatechange;
97 }; 41 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698