mirror of
https://github.com/langhuihui/monibuca.git
synced 2025-12-24 13:48:04 +08:00
69 lines
1.6 KiB
Go
69 lines
1.6 KiB
Go
package box
|
||
|
||
import (
|
||
"encoding/binary"
|
||
"io"
|
||
)
|
||
|
||
// aligned(8) class HintMediaHeaderBox
|
||
// extends FullBox(‘hmhd’, version = 0, 0) {
|
||
// unsigned int(16) maxPDUsize;
|
||
// unsigned int(16) avgPDUsize;
|
||
// unsigned int(32) maxbitrate;
|
||
// unsigned int(32) avgbitrate;
|
||
// unsigned int(32) reserved = 0;
|
||
// }
|
||
|
||
type HintMediaHeaderBox struct {
|
||
MaxPDUsize uint16
|
||
AvgPDUsize uint16
|
||
Maxbitrate uint32
|
||
Avgbitrate uint32
|
||
}
|
||
|
||
func NewHintMediaHeaderBox() *HintMediaHeaderBox {
|
||
return &HintMediaHeaderBox{}
|
||
}
|
||
|
||
func (hmhd *HintMediaHeaderBox) Decode(r io.Reader) (offset int, err error) {
|
||
var fullbox FullBox
|
||
if _, err = fullbox.Decode(r); err != nil {
|
||
return 0, err
|
||
}
|
||
buf := make([]byte, 16)
|
||
if _, err = io.ReadFull(r, buf); err != nil {
|
||
return 0, err
|
||
}
|
||
offset = 0
|
||
hmhd.MaxPDUsize = binary.BigEndian.Uint16(buf[offset:])
|
||
offset += 2
|
||
hmhd.AvgPDUsize = binary.BigEndian.Uint16(buf[offset:])
|
||
offset += 2
|
||
hmhd.Maxbitrate = binary.BigEndian.Uint32(buf[offset:])
|
||
offset += 4
|
||
hmhd.Avgbitrate = binary.BigEndian.Uint32(buf[offset:])
|
||
offset += 8
|
||
return
|
||
}
|
||
|
||
func (hmhd *HintMediaHeaderBox) Encode() (int, []byte) {
|
||
fullbox := NewFullBox(TypeHMHD, 0)
|
||
fullbox.Box.Size = FullBoxLen + 16
|
||
offset, buf := fullbox.Encode()
|
||
binary.BigEndian.PutUint16(buf[offset:], hmhd.MaxPDUsize)
|
||
offset += 2
|
||
binary.BigEndian.PutUint16(buf[offset:], hmhd.AvgPDUsize)
|
||
offset += 2
|
||
binary.BigEndian.PutUint32(buf[offset:], hmhd.Maxbitrate)
|
||
offset += 4
|
||
binary.BigEndian.PutUint32(buf[offset:], hmhd.Avgbitrate)
|
||
offset += 8
|
||
return offset, buf
|
||
}
|
||
|
||
func makeHmhdBox() []byte {
|
||
hmhd := NewHintMediaHeaderBox()
|
||
_, hmhdbox := hmhd.Encode()
|
||
return hmhdbox
|
||
}
|