dom/media/webaudio/test/test_convolverNodeChannelCount.html
author Dennis Jackson <djackson@mozilla.com>
Sun, 26 Mar 2023 07:31:40 +0000
changeset 657950 dee1eb3308521b4cb7c8a3afe44520efcf582650
parent 491143 3b3c5e0e1bc4a58d8a7d5718745cc41153e06a76
permissions -rw-r--r--
Bug 1822876: Add H3 ECH Telemetry. r=kershaw,necko-reviewers This patch adds telemetry which records when H3 connections succeed / fail and what kind of ECH they used. Our H3 ECH tests are extended to test these different modes and that the telemetry is recorded correctly. Differential Revision: https://phabricator.services.mozilla.com/D172813

<!DOCTYPE HTML>
<html>
<head>
  <title>Test ConvolverNode channel count</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 src="webaudio.js" type="text/javascript"></script>
<script class="testbody" type="text/javascript">

const signalLength = 2048;
const responseLength = 1000;
const outputLength = 2048; // < signalLength + responseLength to test bug 910171

var gTest = {
  length: outputLength,
  numberOfChannels: 2,
  createGraph(context) {
    var buffer = context.createBuffer(2, signalLength, context.sampleRate);
    for (var i = 0; i < signalLength; ++i) {
      var sample = Math.sin(440 * 2 * Math.PI * i / context.sampleRate);
      // When mixed into a single channel, this produces silence
      buffer.getChannelData(0)[i] = sample;
      buffer.getChannelData(1)[i] = -sample;
    }

    var response = context.createBuffer(2, responseLength, context.sampleRate);
    for (var i = 0; i < responseLength; ++i) {
      response.getChannelData(0)[i] = i / responseLength;
      response.getChannelData(1)[i] = 1 - (i / responseLength);
    }

    var convolver = context.createConvolver();
    convolver.buffer = response;
    convolver.channelCount = 1;

    expectException(function() { convolver.channelCount = 3; },
                    DOMException.NOT_SUPPORTED_ERR);
    convolver.channelCountMode = "explicit";
    expectException(function() { convolver.channelCountMode = "max"; },
                    DOMException.NOT_SUPPORTED_ERR);
    convolver.channelInterpretation = "discrete";
    convolver.channelInterpretation = "speakers";

    var source = context.createBufferSource();
    source.buffer = buffer;
    source.connect(convolver);
    source.start(0);

    return convolver;
  },
};

runTest();

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