forked from jiegec/tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyH264.bt
62 lines (59 loc) · 1.33 KB
/
myH264.bt
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//------------------------------------------------
//--- 010 Editor v9.0 Binary Template
//
// File:
// Authors:
// Version:
// Purpose:
// Category:
// File Mask:
// ID Bytes:
// History:
//------------------------------------------------
typedef struct {
local int64 pos = FTell();
local int a = ReadUByte(pos++);
local int b = ReadUByte(pos++);
local int c = ReadUByte(pos++);
while (pos < FileSize()) {
if (a == 0 && b == 0 && c == 1) {
break;
}
a = b;
b = c;
c = ReadUByte(pos++);
}
FSeek(pos);
pos += 3;
a = ReadUByte(pos++);
b = ReadUByte(pos++);
c = ReadUByte(pos++);
local int len = 0;
while (pos < FileSize()) {
if (a == 0 && b == 0 && c == 1) {
break;
}
len ++;
a = b;
b = c;
c = ReadUByte(pos++);
}
union {
UBYTE nalu[len+(pos == FileSize() ? 6 : 3)];
struct {
UBYTE forbidden_zero_bit: 1;
UBYTE nal_ref_idc: 2;
enum <ubyte> {
slice_non_idr = 1,
slice_idr = 5,
sei = 6,
sps = 7,
pps = 8,
} nal_unit_type : 5;
} NAL_SLICE_HEADER;
} NAL;
} NALU;
BigEndian();
while(!FEof()) {
NALU nalu;
}