forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudionode-connect-order.html
66 lines (47 loc) · 1.79 KB
/
audionode-connect-order.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<script src="../resources/js-test.js"></script>
<script src="resources/audio-testing.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script>
description("This tests that we don't trigger an assertion failure due to AudioNode connection order.");
var sampleRate = 44100.0;
var renderLengthSeconds = 0.125;
var delayTimeSeconds = 0.1;
function createSinWaveBuffer(context, lengthInSeconds, frequency) {
var audioBuffer = context.createBuffer(1, lengthInSeconds * sampleRate, sampleRate);
var n = audioBuffer.length;
var data = audioBuffer.getChannelData(0);
for (var i = 0; i < n; ++i) {
data[i] = Math.sin(frequency * 2 * Math.PI * i / sampleRate);
}
return audioBuffer;
}
function runTest() {
window.jsTestIsAsync = true;
// Create offline audio context.
var context = new OfflineAudioContext(1, sampleRate * renderLengthSeconds, sampleRate);
var toneBuffer = createSinWaveBuffer(context, renderLengthSeconds, 880);
var bufferSource = context.createBufferSource();
bufferSource.buffer = toneBuffer;
bufferSource.connect(context.destination);
var delay = context.createDelay();
delay.delayTime.value = delayTimeSeconds;
// We connect delay node to gain node before anything is connected to delay node itself.
// We do this because we try to trigger the ASSERT which might be fired due to AudioNode connection order,
// especially when gain node and delay node is involved e.g. https://bugs.webkit.org/show_bug.cgi?id=76685.
var gain = context.createGain();
gain.connect(context.destination);
delay.connect(gain);
bufferSource.start(0);
context.oncomplete = finishJSTest;
context.startRendering();
}
runTest();
</script>
</body>
</html>