forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 916285 - Make OscillatorNode handle negative frequencies. r=karlt
--HG-- extra : rebase_source : 8db864efa7d7fcfc02d6c66b8b0f050180968ac9
- Loading branch information
Showing
3 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
dom/media/webaudio/test/test_oscillatorNodeNegativeFrequency.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>Test the OscillatorNode when the frequency is negative</title> | ||
<script type="text/javascript" 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 types = ["sine", | ||
"square", | ||
"sawtooth", | ||
"triangle"]; | ||
|
||
var finished = 0; | ||
function finish() { | ||
if (++finished == types.length) { | ||
SimpleTest.finish(); | ||
} | ||
} | ||
|
||
types.forEach(function(t) { | ||
var context = new OfflineAudioContext(1, 256, 44100); | ||
var osc = context.createOscillator(); | ||
|
||
osc.frequency.value = -440; | ||
osc.type = t; | ||
|
||
osc.connect(context.destination); | ||
osc.start(); | ||
context.startRendering().then(function(buffer) { | ||
var samples = buffer.getChannelData(0); | ||
// This samples the wave form in the middle of the first period, the value | ||
// should be negative. | ||
ok(samples[Math.floor(44100 / 440 / 4)] < 0., "Phase should be inverted when using a " + t + " waveform"); | ||
finish(); | ||
}); | ||
}); | ||
}); | ||
|
||
</script> | ||
</pre> | ||
</body> | ||
</html> |