summaryrefslogtreecommitdiffstats
path: root/dom/media/mediasource/test/test_SplitAppend_mp4.html
blob: 9e006e69962264170320cc0ea54207aef6aee907 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE HTML>
<html>
<head>
  <title>MSE: append initialization and media segment separately</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();

var updateCount = 0;

runWithMSE(function (ms, v) {
  ms.addEventListener("sourceopen", function () {
    var sb = ms.addSourceBuffer("video/mp4");

    fetchWithXHR("bipbop/bipbop2s.mp4", function (arrayBuffer) {
      sb.appendBuffer(new Uint8Array(arrayBuffer, 0, 1395));
      sb.addEventListener("updateend", function () {
        updateCount++;
        if (updateCount == 1) {
          sb.appendBuffer(new Uint8Array(arrayBuffer, 1395));
        }
        else if (updateCount == 2) {
          ms.endOfStream();
        }
      });
      v.play();
    });
  });

  v.addEventListener("ended", function () {
    // The bipbop video doesn't start at 0. The old MSE code adjust the
    // timestamps and ignore the audio track. The new one doesn't.
    isfuzzy(v.duration, 1.696, 0.166, "Video has correct duration");
    isfuzzy(v.currentTime, 1.696, 0.166, "Video has played to end");
    SimpleTest.finish();
  });
});

</script>
</pre>
</body>
</html>