AudioBufferSourceNode idl incorrect |
|||
Issue descriptionThe WebAudio spec (https://webaudio.github.io/web-audio-api/#AudioScheduledSourceNode) says AudioBufferSourceNode has its own stop method, instead of inheriting from AudioScheduledSourceNode: [Exposed=Window] interface AudioScheduledSourceNode : AudioNode { attribute EventHandler onended; void start(optional double when = 0); void stop(optional double when = 0); }; Chrome's implementation doesn't do this. Make it match. (I think the spec should be changed, but that seems very unlikely at this point.)
,
Mar 20 2018
,
Mar 29 2018
See https://github.com/WebAudio/web-audio-api/issues/1536 The spec is going to change slightly so that the AudioBufferSourceNode doesn't define its own stop method, inheriting from AudioScheduledSourceNode instead, as Chrome does.
,
Apr 9 2018
Spec has been changed; no need to do anything here anymore. |
|||
►
Sign in to add a comment |
|||
Comment 1 by rtoy@chromium.org
, Mar 19 2018