mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
14 lines
448 B
Text
14 lines
448 B
Text
![]() |
#import <WebAudio/AudioNode.idl>
|
||
|
#import <WebAudio/BaseAudioContext.idl>
|
||
|
|
||
|
// https://webaudio.github.io/web-audio-api/#ChannelMergerNode
|
||
|
[Exposed=Window]
|
||
|
interface ChannelMergerNode : AudioNode {
|
||
|
constructor (BaseAudioContext context, optional ChannelMergerOptions options = {});
|
||
|
};
|
||
|
|
||
|
// https://webaudio.github.io/web-audio-api/#ChannelMergerOptions
|
||
|
dictionary ChannelMergerOptions : AudioNodeOptions {
|
||
|
unsigned long numberOfInputs = 6;
|
||
|
};
|