mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-25 03:36:36 +00:00
WebAudio: Stub remainder of AudioBufferSourceNode
This commit is contained in:
parent
779e3072f9
commit
014a069157
Notes:
github-actions[bot]
2024-07-28 19:42:06 +00:00
Author: https://github.com/bbb651
Commit: 014a069157
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/867
3 changed files with 116 additions and 8 deletions
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue