Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/media/webaudio/test/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_bug956489.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/media/webaudio/test/test_bug956489.html


<!DOCTYPE HTML>
<html>
<head>
  <title>Test when and currentTime are in the same coordinate system</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();
SimpleTest.requestFlakyTimeout("This test needs to wait a while for the AudioContext's timer to start.");
addLoadEvent(function() {
  var freq = 330;

  var context = new AudioContext();

  var buffer = context.createBuffer(1, context.sampleRate / freq, context.sampleRate);
  for (var i = 0; i < buffer.length; ++i) {
    buffer.getChannelData(0)[i] = Math.sin(2 * Math.PI * i / buffer.length);
  }

  var source = context.createBufferSource();
  source.loop = true;
  source.buffer = buffer;

  setTimeout(function () {
      var finished = false;

      source.start(context.currentTime);
      var processor = context.createScriptProcessor(25611);
      processor.onaudioprocess = function (e) {
          if (finished) return;
          var c = e.inputBuffer.getChannelData(0);
          var result = true;

          for (var i = 0; i < buffer.length; ++i) {
              if (Math.abs(c[i] - buffer.getChannelData(0)[i]) > 1e-9) {
                  result = false;
                  break;
              }
          }
          finished = true;
          ok(result, "when and currentTime are in same time coordinate system");
          SimpleTest.finish();
      }
      processor.connect(context.destination);
      source.connect(processor);
  }, 500);
});

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

Messung V0.5 in Prozent
C=98 H=100 G=98

¤ Dauer der Verarbeitung: 0.23 Sekunden  (vorverarbeitet am  2026-06-10) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.