summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/test_pannerNodeHRTFSymmetry.html
blob: abd03b389885fd69730efa61b0935e25a669bb2c (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE HTML>
<html>
<head>
  <title>Test left/right symmetry and block-offset invariance of HRTF panner</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();

const blockSize = 128;
const bufferSize = 4096; // > HRTF panner latency

var ctx = new AudioContext();

function isChannelSilent(channel) {
  for (var i = 0; i < channel.length; ++i) {
    if (channel[i] != 0.0) {
      return false;
    }
  }
  return true;
}

function startTest() {
  var leftPanner = ctx.createPanner();
  var rightPanner = ctx.createPanner();
  leftPanner.panningModel = "HRTF";
  rightPanner.panningModel = "HRTF";
  leftPanner.positionX.value = -1;
  rightPanner.positionX.value = 1;

  // Test that PannerNode processes the signal consistently irrespective of
  // the offset in the processing block.  This is done by inserting a delay of
  // less than a block size before one panner.
  const delayTime = 0.7 * blockSize / ctx.sampleRate;
  var leftDelay = ctx.createDelay(delayTime);
  leftDelay.delayTime.value = delayTime;
  leftDelay.connect(leftPanner);
  // and compensating for the delay after the other.
  var rightDelay = ctx.createDelay(delayTime);
  rightDelay.delayTime.value = delayTime;
  rightPanner.connect(rightDelay);

  // Feed the panners with a signal having some harmonics to fill the spectrum.
  var oscillator = ctx.createOscillator();
  oscillator.frequency.value = 110;
  oscillator.type = "sawtooth";
  oscillator.connect(leftDelay);
  oscillator.connect(rightPanner);
  oscillator.start(0);

  // Switch the channels on one panner output, and it should match the other.
  var splitter = ctx.createChannelSplitter();
  leftPanner.connect(splitter);
  var merger = ctx.createChannelMerger();
  splitter.connect(merger, 0, 1);
  splitter.connect(merger, 1, 0);

  // Invert one signal so that mixing with the other will find the difference.
  var gain = ctx.createGain();
  gain.gain.value = -1.0;
  merger.connect(gain);

  var processor = ctx.createScriptProcessor(bufferSize, 2, 0);
  gain.connect(processor);
  rightDelay.connect(processor);
  processor.onaudioprocess =
    function(e) {
      compareBuffers(e.inputBuffer,
                     ctx.createBuffer(2, bufferSize, ctx.sampleRate));
      e.target.onaudioprocess = null;
      SimpleTest.finish();
    }
}

function prepareTest() {
  // A PannerNode will produce no output until it has loaded its HRIR
  // database.  Wait for this to load before starting the test.
  var processor = ctx.createScriptProcessor(bufferSize, 2, 0);
  var panner = ctx.createPanner();
  panner.panningModel = "HRTF";
  panner.connect(processor);
  var oscillator = ctx.createOscillator();
  oscillator.connect(panner);
  oscillator.start(0);

  processor.onaudioprocess =
    function(e) {
      if (isChannelSilent(e.inputBuffer.getChannelData(0)))
        return;

      oscillator.stop(0);
      panner.disconnect();
      e.target.onaudioprocess = null;
      startTest();
    };
}
prepareTest();
</script>
</pre>
</body>
</html>