| 4ch-440.wav |
|
353022 |
| audio-param.js |
|
1658 |
| audiobuffersource-testing.js |
|
3310 |
| audionodeoptions.js |
|
18338 |
| audioparam-testing.js |
|
20021 |
| audit-util.js |
@fileOverview This file includes legacy utility functions for the layout
test.
|
11103 |
| audit.js |
@fileOverview WebAudio layout test utility library. Built around W3C's
testharness.js. Includes asynchronous test task manager,
assertion utilities.
@dependency testharness.js
|
46835 |
| biquad-filters.js |
|
8563 |
| biquad-testing.js |
|
5545 |
| convolution-testing.js |
|
4990 |
| delay-testing.js |
|
2022 |
| distance-model-testing.js |
|
6728 |
| merger-testing.js |
|
2041 |
| mix-testing.js |
|
689 |
| mixing-rules.js |
Create an n-channel buffer, with all sample data zero except for a shifted
impulse. The impulse position depends on the channel index. For example, for
a 4-channel buffer:
channel 0: 1 0 0 0 0 0 0 0
channel 1: 0 1 0 0 0 0 0 0
channel 2: 0 0 1 0 0 0 0 0
channel 3: 0 0 0 1 0 0 0 0
@param {AudioContext} context Associated AudioContext.
@param {Number} numberOfChannels Number of channels of test buffer.
@param {Number} frameLength Buffer length in frames.
@return {AudioBuffer}
|
13279 |
| note-grain-on-testing.js |
|
6904 |
| panner-formulas.js |
|
5126 |
| panner-model-testing.js |
|
7515 |
| sin_440Hz_-6dBFS_1s.wav |
|
88246 |
| start-stop-exceptions.js |
@function
@param {AudioScheduledSourceNode} node - The AudioScheduledSourceNode (e.g.,
ConstantSourceNode, AudioBufferSourceNode) to test.
@param {Array<Object>} [options] - Optional: An array of test objects for
additional start() exceptions. Each object should have:
- `errorType`: The expected error constructor(e.g., TypeError,
RangeError).
- `args`: An array of arguments to pass to the `node.start()` method.
@description Tests that AudioScheduledSourceNode's `start()` and `stop()`
methods throw the correct exceptions for invalid input values and states,
according to the Web Audio API specification. This function uses
`testharness.js` assertions.
|
2881 |
| stereopanner-testing.js |
Test implementation class.
@param {Object} options Test options
@param {Object} options.description Test description
@param {Object} options.numberOfInputChannels Number of input channels
|
6569 |