You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lal/httpflv/avc.go

52 lines
1.2 KiB
Go

package httpflv
import (
"github.com/q191201771/lal/bele"
"github.com/q191201771/lal/log"
)
// TODO chef: move me to other packet
// H.264-AVC-ISO_IEC_14496-15.pdf
// 5.2.4 Decoder configuration information
// <buf> body of tag
func parseAvcSeqHeader(buf []byte) (sps, pps []byte, err error) {
// TODO chef: check if read out of <buf> range
if buf[0] != AvcKey || buf[1] != AvcPacketTypeSeqHeader || buf[2] != 0 || buf[3] != 0 || buf[4] != 0 {
log.Error("parse avc seq header failed.")
err = fxxkErr
return
}
//configurationVersion := buf[5]
//avcProfileIndication := buf[6]
//profileCompatibility := buf[7]
//avcLevelIndication := buf[8]
//lengthSizeMinusOne := buf[9] & 0x03
index := 10
numOfSps := int(buf[index] & 0x1F)
index++
// TODO chef: if the situation of multi sps exist?
// only take the last one.
for i := 0; i < numOfSps; i++ {
lenOfSps := int(bele.BeUInt16(buf[index:]))
index += 2
sps = append(sps, buf[index:index+lenOfSps]...)
index += lenOfSps
}
numOfPps := int(buf[index] & 0x1F)
index++
for i := 0; i < numOfPps; i++ {
lenOfPps := int(bele.BeUInt16(buf[index:]))
index += 2
pps = append(pps, buf[index:index+lenOfPps]...)
index += lenOfPps
}
return
}