summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_decoderDelay.html
blob: c6486e4c4ed3cbac7e8139617eb1d8f74b05e4db (plain)
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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test that decoder delay is handled</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<pre id="test">
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

var tests = [
  "half-a-second-8000.mp3",
  "half-a-second-48000.mp3",
];

async function doit(t) {
  var count = 0;
  var context = new OfflineAudioContext(1, 128, 48000);
  tests.forEach(async testfile => {
    var response = await fetch(testfile);
    var buffer = await response.arrayBuffer();
    var decoded = await context.decodeAudioData(buffer);
    is(decoded.duration, 0.5, "The file is half a second.");
    if (++count == tests.length) {
      SimpleTest.finish();
    }
  });
}

doit();

</script>
</pre>
</body>
</html>