Backed out changesets 5447d49a2c6f and ab9c9d0819a2 (bug 867089) for mochitest failures.

CLOSED TREE
This commit is contained in:
Ryan VanderMeulen 2013-04-30 11:16:55 -04:00
parent ec038bd16e
commit c5152229c0
3 changed files with 0 additions and 51 deletions

View File

@ -312,11 +312,6 @@ public:
mPlaybackRate = mPlaybackRateTimeline.GetValueAtTime<TrackTicks>(aStream->GetCurrentPosition());
}
// Make sure the playback rate if something our resampler can work with.
if (mPlaybackRate <= 0.0 || mPlaybackRate >= 1024) {
mPlaybackRate = 1.0;
}
uint32_t currentOutSampleRate, currentInSampleRate;
if (ShouldResample()) {
SpeexResamplerState* resampler = Resampler(mChannels);

View File

@ -19,7 +19,6 @@ MOCHITEST_FILES := \
test_bug856771.html \
test_bug866570.html \
test_bug866737.html \
test_bug867089.html \
test_analyserNode.html \
test_AudioBuffer.html \
test_AudioContext.html \

View File

@ -1,45 +0,0 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Crashtest for bug 867089</title>
<script type="text/javascript" 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">
SpecialPowers.setBoolPref("media.webaudio.enabled", true);
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
var ctx = new AudioContext();
// Test invalid playbackRate values for AudioBufferSourceNode.
var source = ctx.createBufferSource();
var buffer = ctx.createBuffer(2, 2048, 8000);
source.buffer = buffer;
source.playbackRate.value = 0.0;
source.connect(ctx.destination);
source.start(0);
var source2 = ctx.createBufferSource();
source2.buffer = buffer;
source2.playbackRate.value = -1.0;
source2.connect(ctx.destination);
source2.start(0);
var source2 = ctx.createBufferSource();
source3.buffer = buffer;
source3.playbackRate.value = 3000000.0;
source3.connect(ctx.destination);
source3.start(0);
ok(true, "We did not crash.");
SpecialPowers.clearUserPref("media.webaudio.enabled");
SimpleTest.finish();
});
</script>
</pre>
</body>
</html>