summaryrefslogtreecommitdiffstats
path: root/dom/media/webaudio/test/blink/test_biquadFilterNodeNotch.html
blob: 0fcbc5546e72c1ceaae5e1267ea0659324987a56 (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
<!DOCTYPE HTML>
<html>
<head>
  <title>Test BiquadFilterNode Notch Filter</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="audio-testing.js"></script>
<script src="biquad-filters.js"></script>
<script src="biquad-testing.js"></script>
<script src="webaudio.js" type="text/javascript"></script>
<script class="testbody" type="text/javascript">

SimpleTest.waitForExplicitFinish();

addLoadEvent(function() {
    // Create offline audio context.
    var context = new OfflineAudioContext(2, sampleRate * renderLengthSeconds, sampleRate);

    var filterParameters = [{cutoff : 0,    q : 10, gain : 1 },
                            {cutoff : 1,    q : 10, gain : 1 },
                            {cutoff : .5,   q :  0, gain : 1 },
                            {cutoff : 0.25, q : 10, gain : 1 },
                           ];

    createTestAndRun(context, "notch", filterParameters);
});
</script>
</pre>
</body>
</html>