blob: c6841db2a2a83d2cb7bf2dec44a4a042844fe59f [file] [log] [blame]
// Source: Web Audio API (https://webaudio.github.io/web-audio-api/)
enum ChannelCountMode {
"max",
"clamped-max",
"explicit"
};
enum ChannelInterpretation {
"speakers",
"discrete"
};
dictionary AudioNodeOptions {
unsigned long channelCount;
ChannelCountMode channelCountMode;
ChannelInterpretation channelInterpretation;
};