зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1269178: P4. Add mochitest. r=gerald
It ensures that resume from waiting for data is correct and the MediaFormatReader internal seek can handle partial GOP. MozReview-Commit-ID: 1jyv3dajQPv --HG-- extra : rebase_source : d9aba013aaacc9c19ee6a47ead839adda5c1299e
This commit is contained in:
Родитель
0eb3dc97f9
Коммит
e1f2021daa
Двоичный файл не отображается.
|
@ -0,0 +1 @@
|
|||
Cache-Control: no-store
|
Двоичный файл не отображается.
|
@ -0,0 +1 @@
|
|||
Cache-Control: no-store
|
Двоичный файл не отображается.
|
@ -0,0 +1 @@
|
|||
Cache-Control: no-store
|
|
@ -115,4 +115,17 @@ SimpleTest.registerTimeoutFunction(function() {
|
|||
for (var a of document.getElementsByTagName("audio")) {
|
||||
a.mozDumpDebugInfo();
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function waitUntilTime(target, targetTime) {
|
||||
return new Promise(function(resolve, reject) {
|
||||
target.addEventListener("waiting", function onwaiting() {
|
||||
info("Got a waiting event at " + target.currentTime);
|
||||
if (target.currentTime >= targetTime) {
|
||||
ok(true, "Reached target time of: " + targetTime);
|
||||
target.removeEventListener("waiting", onwaiting);
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
|
@ -40,6 +40,9 @@ support-files =
|
|||
aac51-48000-128000-init.mp4 aac51-48000-128000-init.mp4^headers^
|
||||
aac51-48000-128000-1.m4s aac51-48000-128000-1.m4s^headers^
|
||||
aac51-48000-128000-2.m4s aac51-48000-128000-2.m4s^headers^
|
||||
bipbop/bipbop_480_624kbps-videoinit.mp4 bipbop/bipbop_480_624kbps-videoinit.mp4^headers^
|
||||
bipbop/bipbop_480_624kbps-video1.m4s bipbop/bipbop_480_624kbps-video1.m4s^headers^
|
||||
bipbop/bipbop_480_624kbps-video2.m4s bipbop/bipbop_480_624kbps-video2.m4s^headers^
|
||||
|
||||
[test_AudioChange_mp4.html]
|
||||
skip-if = ((os == "win" && os_version == "5.1") || (toolkit == 'android')) # Not supported on xp and android 2.3
|
||||
|
@ -60,6 +63,8 @@ skip-if = ((os == "win" && os_version == "5.1") || (toolkit == 'android' || buil
|
|||
[test_DurationUpdated_mp4.html]
|
||||
skip-if = ((os == "win" && os_version == "5.1") || (toolkit == 'android')) # Not supported on xp and android 2.3
|
||||
[test_FrameSelection.html]
|
||||
[test_FrameSelection_mp4.html]
|
||||
skip-if = ((os == "win" && os_version == "5.1") || (toolkit == 'android')) # Not supported on xp and android 2.3
|
||||
[test_HaveMetadataUnbufferedSeek.html]
|
||||
[test_HaveMetadataUnbufferedSeek_mp4.html]
|
||||
skip-if = ((os == "win" && os_version == "5.1") || (toolkit == 'android')) # Not supported on xp and android 2.3
|
||||
|
|
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
|
||||
<title>MSE: Don't get stuck buffering for too long when we have frames to show</title>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<script type="text/javascript" src="mediasource.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();
|
||||
|
||||
// This test loads partial video, plays and waits until playback stalls.
|
||||
// It then loads only 3 frames of a video at higher resolution.
|
||||
|
||||
var receivedSourceOpen = false;
|
||||
runWithMSE(function(ms, v) {
|
||||
ms.addEventListener("sourceopen", function() {
|
||||
ok(true, "Receive a sourceopen event");
|
||||
ok(!receivedSourceOpen, "Should only receive one sourceopen for this test");
|
||||
receivedSourceOpen = true;
|
||||
var sb = ms.addSourceBuffer("video/mp4");
|
||||
ok(sb, "Create a SourceBuffer");
|
||||
|
||||
sb.addEventListener('error', (e) => { ok(false, "Got Error: " + e); SimpleTest.finish(); });
|
||||
fetchAndLoad(sb, 'bipbop/bipbop', ['init'], '.mp4')
|
||||
.then(function() {
|
||||
var promises = [];
|
||||
promises.push(fetchAndLoad(sb, 'bipbop/bipbop', range(1,3), '.m4s'));
|
||||
promises.push(once(v, "loadeddata"));
|
||||
return Promise.all(promises);
|
||||
}).then(function() {
|
||||
is(sb.buffered.length, 1, "continuous range");
|
||||
v.play();
|
||||
// We have nothing to play, waiting will be fired.
|
||||
return waitUntilTime(v, 1.5);
|
||||
}).then(function() {
|
||||
return fetchAndLoad(sb, 'bipbop/bipbop_480_624kbps-video', ['init'], '.mp4');
|
||||
}).then(function() {
|
||||
sb.timestampOffset = 1.601666; // End of the video track buffered - time of first video sample (0.095).
|
||||
sb.appendWindowEnd = 1.796677; // Only allow room for three extra video frames (we need 3 as this video has b-frames).
|
||||
return fetchAndLoad(sb, 'bipbop/bipbop_480_624kbps-video', ['1'], '.m4s');
|
||||
}).then(function() {
|
||||
ms.endOfStream();
|
||||
var promises = [];
|
||||
promises.push(once(ms, "sourceended"));
|
||||
promises.push(once(v, "ended"));
|
||||
return Promise.all(promises);
|
||||
}).then(function() {
|
||||
if(v.width, 640, "has proper width");
|
||||
if(v.height, 480, "has proper height");
|
||||
SimpleTest.finish();
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
Загрузка…
Ссылка в новой задаче