summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_scriptProcessorNode_playbackTime1.html
blob: ec695f952b411d2b38a19aa7c63b94aebfd04d18 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE HTML>
<html>
<head>
  <title>Test ScriptProcessorNode playbackTime for bug 970773</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 context = new AudioContext();
const delay = 0.1;

function doTest() {
  const processorBufferLength = 256;
  // |currentTime| may include double precision floating point
  // rounding errors, so round to nearest integer sample to ignore these.
  var minimumPlaybackSample =
    Math.round(context.currentTime * context.sampleRate) +
    processorBufferLength;
  var sp = context.createScriptProcessor(processorBufferLength);
  sp.connect(context.destination);
  sp.onaudioprocess =
    function(e) {
      is(e.inputBuffer.length, processorBufferLength,
         "expected buffer length");
      var playbackSample = Math.round(e.playbackTime * context.sampleRate)
      ok(playbackSample >= minimumPlaybackSample,
         "playbackSample " + playbackSample +
         " beyond expected minimum " + minimumPlaybackSample);
      sp.onaudioprocess = null;
      SimpleTest.finish();
    };
}

// Wait until AudioDestinationNode has accumulated enough 'extra' time so that
// a failure would be easily detected.
(function waitForExtraTime() {
  if (context.currentTime < delay) {
    SimpleTest.executeSoon(waitForExtraTime);
  } else {
    doTest();
  }
})();

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