WebAudio: Stub remainder of AudioBufferSourceNode

This commit is contained in:
bbb651 2024-07-27 17:19:38 +03:00 committed by Andreas Kling
commit 014a069157
Notes: github-actions[bot] 2024-07-28 19:42:06 +00:00
3 changed files with 116 additions and 8 deletions

View file

@ -16,11 +16,11 @@ dictionary AudioBufferSourceOptions {
[Exposed=Window]
interface AudioBufferSourceNode : AudioScheduledSourceNode {
constructor(BaseAudioContext context, optional AudioBufferSourceOptions options = {});
[FIXME] attribute AudioBuffer? buffer;
[FIXME] readonly attribute AudioParam playbackRate;
[FIXME] readonly attribute AudioParam detune;
[FIXME] attribute boolean loop;
[FIXME] attribute double loopStart;
[FIXME] attribute double loopEnd;
[FIXME] undefined start(optional double when = 0, optional double offset, optional double duration);
attribute AudioBuffer? buffer;
readonly attribute AudioParam playbackRate;
readonly attribute AudioParam detune;
attribute boolean loop;
attribute double loopStart;
attribute double loopEnd;
undefined start(optional double when = 0, optional double offset, optional double duration);
};