Skip to content

Commit

Permalink
Bug 1498428 [wpt PR 13475] - Allow reusing AudioBuffers, a=testonly
Browse files Browse the repository at this point in the history
Automatic update from web-platform-testsAdd test to check that AudioBuffers can be reused between AudioBufferSourceNodes

--
Merge pull request #13475 from servo-wpt-sync/servo_export_21910

Allow reusing AudioBuffers
--

wpt-commits: bf21a9f3a4768fe904591741aefd3bf875d95c4e, d647a1bc742a533186d8297cae2a2bee669c7780
wpt-pr: 13475
  • Loading branch information
ferjm authored and moz-wptsync-bot committed Oct 17, 2018
1 parent 54f4791 commit f8f8388
Showing 1 changed file with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!doctype html>
<meta charset="utf-8">
<title>AudioBuffer can be reused between AudioBufferSourceNodes</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function render_audio_context() {
let sampleRate = 44100;
let context = new OfflineAudioContext(
2, sampleRate * 0.1, sampleRate);
let buf = context.createBuffer(1, 0.1 * sampleRate, context.sampleRate);
let data = buf.getChannelData(0);
data[0] = 0.5;
data[1] = 0.25;
let b1 = context.createBufferSource();
b1.buffer = buf;
b1.start();
let b2 = context.createBufferSource();
b2.buffer = buf;
b2.start();
let merger = context.createChannelMerger(2);
b1.connect(merger, 0, 0);
b2.connect(merger, 0, 1);
merger.connect(context.destination);
return context.startRendering();
}
promise_test(function() {
return render_audio_context()
.then(function(buffer) {
assert_equals(buffer.getChannelData(0)[0], 0.5);
assert_equals(buffer.getChannelData(1)[0], 0.5);
assert_equals(buffer.getChannelData(0)[1], 0.25);
assert_equals(buffer.getChannelData(1)[1], 0.25);
});
}, "AudioBuffer can be reused between AudioBufferSourceNodes");
</script>

0 comments on commit f8f8388

Please sign in to comment.