summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_scriptProcessorNodeZeroInputOutput.html
blob: f4b25d49dddf475ed955fdf76af6ee496f1aefed (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test AudioBufferSourceNode</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" src="webaudio.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();
addLoadEvent(function() {
  var context = new AudioContext();

  var sp = context.createScriptProcessor(2048, 0, 2);
  sp.onaudioprocess = function(e) {
    is(e.inputBuffer.numberOfChannels, 0, "Should have 0 input channels");
    is(e.outputBuffer.numberOfChannels, 2, "Should have 2 output channels");
    sp.onaudioprocess = null;

    sp = context.createScriptProcessor(2048, 2, 0);
    sp.onaudioprocess = function(e) {
      is(e.inputBuffer.numberOfChannels, 2, "Should have 2 input channels");
      is(e.outputBuffer.numberOfChannels, 0, "Should have 0 output channels");
      sp.onaudioprocess = null;

      SimpleTest.finish();
    };
    sp.connect(context.destination);
  };
  sp.connect(context.destination);
});

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