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

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

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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 // Copyright 2016 The Chromium Authors. All rights reserved.
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 // found in the LICENSE file.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
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
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
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
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
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
23 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25 4
5 // WebAudio spec: https://webaudio.github.io/web-audio-api/#BaseAudioContext
26 enum AudioContextState { 6 enum AudioContextState {
27 "suspended", 7 "suspended",
28 "running", 8 "running",
29 "closed" 9 "closed"
30 }; 10 };
31 11
32 [ 12 [
33 ActiveScriptWrappable, 13 ActiveScriptWrappable,
34 Constructor,
35 ConstructorCallWith=Document,
36 DependentLifetime, 14 DependentLifetime,
37 ImplementedAs=BaseAudioContext,
38 NoInterfaceObject, 15 NoInterfaceObject,
39 RaisesException=Constructor, 16 ] interface BaseAudioContext : EventTarget {
40 ] interface AudioContext : EventTarget {
41 // All rendered audio ultimately connects to destination, which represents t he audio hardware. 17 // All rendered audio ultimately connects to destination, which represents t he audio hardware.
42 readonly attribute AudioDestinationNode destination; 18 readonly attribute AudioDestinationNode destination;
43 19
44 // All scheduled times are relative to this time in seconds. 20 // All scheduled times are relative to this time in seconds.
45 readonly attribute double currentTime; 21 readonly attribute double currentTime;
46 22
47 // All AudioNodes in the context run at this sample-rate (sample-frames per second). 23 // All AudioNodes in the context run at this sample-rate (sample-frames per second).
48 readonly attribute float sampleRate; 24 readonly attribute float sampleRate;
49 25
50 // All panning is relative to this listener. 26 // All panning is relative to this listener.
51 readonly attribute AudioListener listener; 27 readonly attribute AudioListener listener;
52 28
53 // Current state of the AudioContext 29 // Current state of the AudioContext
54 readonly attribute AudioContextState state; 30 readonly attribute AudioContextState state;
55 31
56 [RaisesException] AudioBuffer createBuffer(unsigned long numberOfChannels, u nsigned long numberOfFrames, float sampleRate); 32 [RaisesException] AudioBuffer createBuffer(unsigned long numberOfChannels, u nsigned long numberOfFrames, float sampleRate);
57 33
58 // Asynchronous audio file data decoding. 34 // Asynchronous audio file data decoding.
59 [RaisesException, MeasureAs=AudioContextDecodeAudioData, CallWith=ScriptStat e] Promise<AudioBuffer> decodeAudioData(ArrayBuffer audioData, optional AudioBuf ferCallback successCallback, optional AudioBufferCallback errorCallback); 35 [RaisesException, MeasureAs=AudioContextDecodeAudioData, CallWith=ScriptStat e] Promise<AudioBuffer> decodeAudioData(ArrayBuffer audioData, optional AudioBuf ferCallback successCallback, optional AudioBufferCallback errorCallback);
60 36
61 // Sources 37 // Sources
62 [RaisesException, MeasureAs=AudioContextCreateBufferSource] AudioBufferSourc eNode createBufferSource(); 38 [RaisesException, MeasureAs=AudioContextCreateBufferSource] AudioBufferSourc eNode createBufferSource();
63 39
64 [RaisesException, MeasureAs=AudioContextCreateMediaElementSource] MediaEleme ntAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement);
65
66 [RaisesException, MeasureAs=AudioContextCreateMediaStreamSource] MediaStream AudioSourceNode createMediaStreamSource(MediaStream mediaStream);
67 [RaisesException, MeasureAs=AudioContextCreateMediaStreamDestination] MediaS treamAudioDestinationNode createMediaStreamDestination();
68
69 // Processing nodes 40 // Processing nodes
70 [RaisesException, MeasureAs=AudioContextCreateGain] GainNode createGain(); 41 [RaisesException, MeasureAs=AudioContextCreateGain] GainNode createGain();
71 [RaisesException, MeasureAs=AudioContextCreateDelay] DelayNode createDelay(o ptional double maxDelayTime); 42 [RaisesException, MeasureAs=AudioContextCreateDelay] DelayNode createDelay(o ptional double maxDelayTime);
72 [RaisesException, MeasureAs=AudioContextCreateBiquadFilter] BiquadFilterNode createBiquadFilter(); 43 [RaisesException, MeasureAs=AudioContextCreateBiquadFilter] BiquadFilterNode createBiquadFilter();
73 [RaisesException, MeasureAs=AudioContextCreateIIRFilter] IIRFilterNode creat eIIRFilter(sequence<double> feedForward, sequence<double> feedBack); 44 [RaisesException, MeasureAs=AudioContextCreateIIRFilter] IIRFilterNode creat eIIRFilter(sequence<double> feedForward, sequence<double> feedBack);
74 [RaisesException, MeasureAs=AudioContextCreateWaveShaper] WaveShaperNode cre ateWaveShaper(); 45 [RaisesException, MeasureAs=AudioContextCreateWaveShaper] WaveShaperNode cre ateWaveShaper();
75 [RaisesException, MeasureAs=AudioContextCreatePannerAutomated] PannerNode cr eatePanner(); 46 [RaisesException, MeasureAs=AudioContextCreatePannerAutomated] PannerNode cr eatePanner();
76 [RaisesException, MeasureAs=AudioContextCreateConvolver] ConvolverNode creat eConvolver(); 47 [RaisesException, MeasureAs=AudioContextCreateConvolver] ConvolverNode creat eConvolver();
77 [RaisesException, MeasureAs=AudioContextCreateDynamicsCompressor] DynamicsCo mpressorNode createDynamicsCompressor(); 48 [RaisesException, MeasureAs=AudioContextCreateDynamicsCompressor] DynamicsCo mpressorNode createDynamicsCompressor();
78 [RaisesException, MeasureAs=AudioContextCreateAnalyser] AnalyserNode createA nalyser(); 49 [RaisesException, MeasureAs=AudioContextCreateAnalyser] AnalyserNode createA nalyser();
79 [RaisesException, MeasureAs=AudioContextCreateScriptProcessor] ScriptProcess orNode createScriptProcessor(optional unsigned long bufferSize, optional unsigne d long numberOfInputChannels, optional unsigned long numberOfOutputChannels); 50 [RaisesException, MeasureAs=AudioContextCreateScriptProcessor] ScriptProcess orNode createScriptProcessor(optional unsigned long bufferSize, optional unsigne d long numberOfInputChannels, optional unsigned long numberOfOutputChannels);
80 [RaisesException, MeasureAs=AudioContextCreateStereoPanner] StereoPannerNode createStereoPanner(); 51 [RaisesException, MeasureAs=AudioContextCreateStereoPanner] StereoPannerNode createStereoPanner();
81 [RaisesException, MeasureAs=AudioContextCreateOscillator] OscillatorNode cre ateOscillator(); 52 [RaisesException, MeasureAs=AudioContextCreateOscillator] OscillatorNode cre ateOscillator();
82 [RaisesException, MeasureAs=AudioContextCreatePeriodicWave] PeriodicWave cre atePeriodicWave(Float32Array real, Float32Array imag, optional PeriodicWaveConst raints options); 53 [RaisesException, MeasureAs=AudioContextCreatePeriodicWave] PeriodicWave cre atePeriodicWave(Float32Array real, Float32Array imag, optional PeriodicWaveConst raints options);
83 54
84 // Channel splitting and merging 55 // Channel splitting and merging
85 [RaisesException, MeasureAs=AudioContextCreateChannelSplitter] ChannelSplitt erNode createChannelSplitter(optional unsigned long numberOfOutputs); 56 [RaisesException, MeasureAs=AudioContextCreateChannelSplitter] ChannelSplitt erNode createChannelSplitter(optional unsigned long numberOfOutputs);
86 [RaisesException, MeasureAs=AudioContextCreateChannelMerger] ChannelMergerNo de createChannelMerger(optional unsigned long numberOfInputs); 57 [RaisesException, MeasureAs=AudioContextCreateChannelMerger] ChannelMergerNo de createChannelMerger(optional unsigned long numberOfInputs);
87 58
88 // Close 59 // Close
89 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte xt] Promise<void> close(); 60 [MeasureAs=AudioContextClose, CallWith=ScriptState, ImplementedAs=closeConte xt] Promise<void> close();
90 61
91 // Pause/resume 62 // Pause/resume
92 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC ontext] Promise<void> suspend(); 63 [MeasureAs=AudioContextSuspend, CallWith=ScriptState, ImplementedAs=suspendC ontext] Promise<void> suspend();
93 [MeasureAs=AudioContextResume, CallWith=ScriptState, ImplementedAs=resumeCon text] Promise<void> resume(); 64 [MeasureAs=AudioContextResume, CallWith=ScriptState, ImplementedAs=resumeCon text] Promise<void> resume();
94 65
66 // TODO(rtoy): These really belong to the AudioContext, but we need them
67 // here so we can use an offline audio context to test these.
68 [RaisesException, MeasureAs=AudioContextCreateMediaElementSource] MediaEleme ntAudioSourceNode createMediaElementSource(HTMLMediaElement mediaElement);
69 [RaisesException, MeasureAs=AudioContextCreateMediaStreamSource] MediaStream AudioSourceNode createMediaStreamSource(MediaStream mediaStream);
70 [RaisesException, MeasureAs=AudioContextCreateMediaStreamDestination] MediaS treamAudioDestinationNode createMediaStreamDestination();
71
95 attribute EventHandler onstatechange; 72 attribute EventHandler onstatechange;
96 }; 73 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698