-
Notifications
You must be signed in to change notification settings - Fork 22
/
stss.go
70 lines (63 loc) · 1.47 KB
/
stss.go
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
63
64
65
66
67
68
69
70
package mp4
import (
"encoding/binary"
"fmt"
"io"
"io/ioutil"
)
// Sync Sample Box (stss - optional)
//
// Contained in : Sample Table box (stbl)
//
// Status: decoded
//
// This lists all sync samples (key frames for video tracks) in the data. If absent, all samples are sync samples.
type StssBox struct {
Version byte
Flags [3]byte
SampleNumber []uint32
}
func DecodeStss(r io.Reader) (Box, error) {
data, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
b := &StssBox{
Version: data[0],
Flags: [3]byte{data[1], data[2], data[3]},
SampleNumber: []uint32{},
}
ec := binary.BigEndian.Uint32(data[4:8])
for i := 0; i < int(ec); i++ {
sample := binary.BigEndian.Uint32(data[(8 + 4*i):(12 + 4*i)])
b.SampleNumber = append(b.SampleNumber, sample)
}
return b, nil
}
func (b *StssBox) Type() string {
return "stss"
}
func (b *StssBox) Size() int {
return BoxHeaderSize + 8 + len(b.SampleNumber)*4
}
func (b *StssBox) Dump() {
fmt.Println("Key frames:")
for i, n := range b.SampleNumber {
fmt.Printf(" #%d : sample #%d\n", i, n)
}
}
func (b *StssBox) Encode(w io.Writer) error {
err := EncodeHeader(b, w)
if err != nil {
return err
}
buf := makebuf(b)
buf[0] = b.Version
buf[1], buf[2], buf[3] = b.Flags[0], b.Flags[1], b.Flags[2]
binary.BigEndian.PutUint32(buf[4:], uint32(len(b.SampleNumber)))
for i := range b.SampleNumber {
binary.BigEndian.PutUint32(buf[8+4*i:], b.SampleNumber[i])
}
_, err = w.Write(buf)
return err
}