-
Notifications
You must be signed in to change notification settings - Fork 84
/
ilst.go
74 lines (62 loc) · 1.73 KB
/
ilst.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
71
72
73
74
package mp4
import (
"io"
"github.com/Eyevinn/mp4ff/bits"
)
// IlstBox - iTunes Metadata Item List Atom (ilst)
// See https://developer.apple.com/library/archive/documentation/QuickTime/QTFF/Metadata/Metadata.html
type IlstBox struct {
Children []Box
}
// AddChild - Add a child box and update SampleCount
func (b *IlstBox) AddChild(child Box) {
b.Children = append(b.Children, child)
}
// DecodeIlstSR - box-specific decode
func DecodeIlstSR(hdr BoxHeader, startPos uint64, sr bits.SliceReader) (Box, error) {
children, err := DecodeContainerChildrenSR(hdr, startPos+8, startPos+hdr.Size, sr)
if err != nil {
return nil, err
}
b := &IlstBox{}
for _, c := range children {
b.AddChild(c)
}
return b, nil
}
// DecodeIlst - box-specific decode
func DecodeIlst(hdr BoxHeader, startPos uint64, r io.Reader) (Box, error) {
children, err := DecodeContainerChildren(hdr, startPos+8, startPos+hdr.Size, r)
if err != nil {
return nil, err
}
b := &IlstBox{}
for _, c := range children {
b.AddChild(c)
}
return b, nil
}
// Type - box-specific type
func (b *IlstBox) Type() string {
return "ilst"
}
// Size - box-specific type
func (b *IlstBox) Size() uint64 {
return containerSize(b.Children)
}
// GetChildren - list of child boxes
func (b *IlstBox) GetChildren() []Box {
return b.Children
}
// Encode - write ilst container to w
func (b *IlstBox) Encode(w io.Writer) error {
return EncodeContainer(b, w)
}
// Encode - write ilst container to sw
func (b *IlstBox) EncodeSW(sw bits.SliceWriter) error {
return EncodeContainerSW(b, sw)
}
// Info - write box-specific information
func (b *IlstBox) Info(w io.Writer, specificBoxLevels, indent, indentStep string) error {
return ContainerInfo(b, w, specificBoxLevels, indent, indentStep)
}