2012-09-19 03:07:33 +04:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2016-06-29 12:30:13 +03:00
|
|
|
* https://webaudio.github.io/web-audio-api/
|
2012-09-19 03:07:33 +04:00
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2013-04-28 02:44:50 +04:00
|
|
|
enum ChannelCountMode {
|
|
|
|
"max",
|
|
|
|
"clamped-max",
|
|
|
|
"explicit"
|
|
|
|
};
|
|
|
|
|
|
|
|
enum ChannelInterpretation {
|
|
|
|
"speakers",
|
|
|
|
"discrete"
|
|
|
|
};
|
|
|
|
|
2016-07-22 14:59:52 +03:00
|
|
|
[Pref="dom.webaudio.enabled"]
|
2013-04-12 19:28:33 +04:00
|
|
|
interface AudioNode : EventTarget {
|
2012-09-19 03:07:33 +04:00
|
|
|
|
2012-09-25 07:31:58 +04:00
|
|
|
[Throws]
|
2015-10-28 07:54:35 +03:00
|
|
|
AudioNode connect(AudioNode destination, optional unsigned long output = 0, optional unsigned long input = 0);
|
2013-05-02 02:59:02 +04:00
|
|
|
[Throws]
|
|
|
|
void connect(AudioParam destination, optional unsigned long output = 0);
|
2012-09-25 07:31:58 +04:00
|
|
|
[Throws]
|
2015-06-05 12:17:14 +03:00
|
|
|
void disconnect();
|
|
|
|
[Throws]
|
|
|
|
void disconnect(unsigned long output);
|
|
|
|
[Throws]
|
|
|
|
void disconnect(AudioNode destination);
|
|
|
|
[Throws]
|
|
|
|
void disconnect(AudioNode destination, unsigned long output);
|
|
|
|
[Throws]
|
|
|
|
void disconnect(AudioNode destination, unsigned long output, unsigned long input);
|
|
|
|
[Throws]
|
|
|
|
void disconnect(AudioParam destination);
|
|
|
|
[Throws]
|
|
|
|
void disconnect(AudioParam destination, unsigned long output);
|
2012-09-19 03:07:33 +04:00
|
|
|
|
|
|
|
readonly attribute AudioContext context;
|
2012-09-25 07:31:58 +04:00
|
|
|
readonly attribute unsigned long numberOfInputs;
|
|
|
|
readonly attribute unsigned long numberOfOutputs;
|
2012-09-19 03:07:33 +04:00
|
|
|
|
2013-04-28 02:44:50 +04:00
|
|
|
// Channel up-mixing and down-mixing rules for all inputs.
|
2013-05-23 15:46:20 +04:00
|
|
|
[SetterThrows]
|
2013-04-28 02:44:50 +04:00
|
|
|
attribute unsigned long channelCount;
|
2013-09-04 23:44:35 +04:00
|
|
|
[SetterThrows]
|
2013-04-28 02:44:50 +04:00
|
|
|
attribute ChannelCountMode channelCountMode;
|
|
|
|
attribute ChannelInterpretation channelInterpretation;
|
|
|
|
|
2012-09-19 03:07:33 +04:00
|
|
|
};
|
|
|
|
|
2014-06-04 06:51:48 +04:00
|
|
|
// Mozilla extension
|
|
|
|
partial interface AudioNode {
|
|
|
|
[ChromeOnly]
|
|
|
|
readonly attribute unsigned long id;
|
|
|
|
};
|
2014-08-19 04:12:50 +04:00
|
|
|
[NoInterfaceObject]
|
|
|
|
interface AudioNodePassThrough {
|
|
|
|
[ChromeOnly]
|
|
|
|
attribute boolean passThrough;
|
|
|
|
};
|
2014-06-04 06:51:48 +04:00
|
|
|
|