change to h264parser.FindDataNALUInAVCCNALUs()
This commit is contained in:
parent
ebdf95b174
commit
88373387b8
6
rtmp.go
6
rtmp.go
@ -708,11 +708,11 @@ func (self *Conn) ReadPacket() (pkt av.Packet, err error) {
|
|||||||
switch tag := _tag.(type) {
|
switch tag := _tag.(type) {
|
||||||
case *flvio.Videodata:
|
case *flvio.Videodata:
|
||||||
pkt.CompositionTime = tsToTime(uint32(tag.CompositionTime))
|
pkt.CompositionTime = tsToTime(uint32(tag.CompositionTime))
|
||||||
if typ := h264parser.CheckNALUsType(tag.Data); typ != h264parser.NALU_AVCC {
|
var ok bool
|
||||||
err = fmt.Errorf("rtmp: input h264 nalu format=%d invalid", typ)
|
if pkt.Data, ok = h264parser.FindDataNALUInAVCCNALUs(tag.Data); !ok {
|
||||||
|
err = fmt.Errorf("rtmp: input h264 format invalid")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
pkt.Data = tag.Data[4:]
|
|
||||||
pkt.IsKeyFrame = tag.FrameType == flvio.FRAME_KEY
|
pkt.IsKeyFrame = tag.FrameType == flvio.FRAME_KEY
|
||||||
pkt.Idx = int8(self.videostreamidx)
|
pkt.Idx = int8(self.videostreamidx)
|
||||||
break poll
|
break poll
|
||||||
|
Loading…
x
Reference in New Issue
Block a user