mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6b47b33388
Reopens the MediaSource when SourceBuffer::Remove is called on an Ended MediaSource. Only run the Range Removal algorithm when MediaSource duration is changed instead of calling Remove on SourceBuffers. Updates tests for the fact that update{start,end} can now be called more than once due to DurationChange. --HG-- extra : rebase_source : d4c96b982ffa9f5cd0b24e6e3a4ef5dffe9be6f6
49 lines
1.3 KiB
HTML
49 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>MSE: seekable attribute after end of stream with split appendBuffer</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();
|
|
|
|
runWithMSE(function (ms, v) {
|
|
ms.addEventListener("sourceopen", function () {
|
|
var sb = ms.addSourceBuffer("video/webm");
|
|
|
|
fetchWithXHR("seek.webm", function (arrayBuffer) {
|
|
sb.appendBuffer(new Uint8Array(arrayBuffer, 0, 25223));
|
|
var updateCount = 0;
|
|
sb.addEventListener("updateend", function () {
|
|
updateCount++;
|
|
if (updateCount == 1) {
|
|
sb.appendBuffer(new Uint8Array(arrayBuffer, 25223));
|
|
}
|
|
else if (updateCount == 2) {
|
|
ms.endOfStream();
|
|
}
|
|
});
|
|
});
|
|
|
|
var target = 2;
|
|
|
|
v.addEventListener("loadedmetadata", function () {
|
|
ok(v.seekable.length, "Resource is seekable");
|
|
ok(v.seekable.length &&
|
|
target >= v.seekable.start(0) &&
|
|
target < v.seekable.end(0), "Target is within seekable range");
|
|
SimpleTest.finish();
|
|
});
|
|
});
|
|
});
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|