-
Notifications
You must be signed in to change notification settings - Fork 2
/
container_struct.html
34 lines (26 loc) · 1.31 KB
/
container_struct.html
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
<!DOCTYPE html>
<html>
<head>
<style>
.box {display: inline-block; border: black solid 1px;box-sizing: border-box;margin: 0;padding: 0;}
.two-bytes {max-width: 100px; width: 15%}
.four-bytes {max-width: 200px; width: 30%}
.infinite-bytes {max-width: 600px; width: 90%}
</style>
</head>
<body>
<p><span class="box four-bytes">Box len</span><span class="box
four-bytes">"FTYP"</span><span class="box four-bytes">"RIC
"</span></p>
### Image Layer Offset Table
<p><span class="box four-bytes">Box len</span><span class="box four-bytes">"ILOT"</span></p>
<p><span class="box two-bytes">width</span><span class="box two-bytes">height</span><span class="box four-bytes">offset</span> x number of layers</p>
### Base Layer
<p><span class="box four-bytes">Box len</span><span class="box four-bytes">"LBAS"</span></p>
<p><span class="box infinite-bytes">Layer data</span></p>
### Enhancement Layer
<p><span class="box four-bytes">Box len</span><span class="box four-bytes">"LAEN"</span></p>
<p><span class="box two-bytes">width</span><span class="box two-bytes">height</span><span class="box two-bytes">position X</span><span class="box two-bytes">position Y</span><span class="box two-bytes">Numerator</span><span class="box two-bytes">Denominator</span></p>
<p><span class="box infinite-bytes">Layer data</span></p>
</body>
</html>