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

Quelle  test_analyserNodeMinimum.html   Sprache: HTML

 
 products/sources/formale Sprachen/C/Firefox/dom/media/webaudio/test/test_analyserNodeMinimum.html


<!DOCTYPE HTML>
<html>
<head>
  <title>Test AnalyserNode when the input is silent</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 ac = new AudioContext();
  var analyser = ac.createAnalyser();
  var constant = ac.createConstantSource();
  var sp = ac.createScriptProcessor(2048, 1, 0);

  constant.offset.value = 0.0;

  constant.connect(analyser)
          .connect(ac.destination);

  constant.connect(sp);

  var buf = new Float32Array(analyser.frequencyBinCount);
  var iteration_count = 10;
  sp.onaudioprocess = function() {
    analyser.getFloatFrequencyData(buf);
    var correct = true;
    for (var i = 0; i < buf.length; i++) {
     correct &= buf[i] == -Infinity;
    }
    ok(correct, "silent input process -Infinity in decibel bins");
    if(!(iteration_count--)) {
      sp.onaudioprocess = null;
      constant.stop();
      ac.close();
      SimpleTest.finish();
    }
  }

  constant.start();
});

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

Messung V0.5
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.16 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.