2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-09-22 02:42:14 +04:00
|
|
|
/* 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-22 02:42:14 +04:00
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2016-12-15 21:24:42 +03:00
|
|
|
dictionary AudioBufferOptions {
|
|
|
|
unsigned long numberOfChannels = 1;
|
|
|
|
required unsigned long length;
|
2017-01-11 00:30:28 +03:00
|
|
|
required float sampleRate;
|
2016-12-15 21:24:42 +03:00
|
|
|
};
|
|
|
|
|
2019-09-27 18:26:14 +03:00
|
|
|
[Pref="dom.webaudio.enabled",
|
|
|
|
Exposed=Window]
|
2012-09-22 02:42:14 +04:00
|
|
|
interface AudioBuffer {
|
2019-09-12 14:01:17 +03:00
|
|
|
[Throws]
|
|
|
|
constructor(AudioBufferOptions options);
|
2012-09-22 02:42:14 +04:00
|
|
|
|
|
|
|
readonly attribute float sampleRate;
|
2016-04-20 19:32:17 +03:00
|
|
|
readonly attribute unsigned long length;
|
2012-09-22 02:42:14 +04:00
|
|
|
|
|
|
|
// in seconds
|
2012-11-20 00:52:29 +04:00
|
|
|
readonly attribute double duration;
|
2012-09-22 02:42:14 +04:00
|
|
|
|
2016-04-20 19:32:17 +03:00
|
|
|
readonly attribute unsigned long numberOfChannels;
|
2012-09-22 02:42:14 +04:00
|
|
|
|
|
|
|
[Throws]
|
|
|
|
Float32Array getChannelData(unsigned long channel);
|
|
|
|
|
2013-09-17 15:30:32 +04:00
|
|
|
[Throws]
|
2020-07-31 17:15:14 +03:00
|
|
|
void copyFromChannel(Float32Array destination, long channelNumber, optional unsigned long startInChannel = 0);
|
2013-09-17 15:30:32 +04:00
|
|
|
[Throws]
|
2020-07-31 17:15:14 +03:00
|
|
|
void copyToChannel(Float32Array source, long channelNumber, optional unsigned long startInChannel = 0);
|
2012-09-22 02:42:14 +04:00
|
|
|
};
|