[fix] hls写ts视频数据时,流中没有spspps导致崩溃

pull/8/head
q191201771 5 years ago
parent c9f29131c4
commit 6d2368f4c6

@ -245,7 +245,11 @@ func (m *Muxer) cacheSPSPPS(msg rtmp.AVMsg) {
}
func (m *Muxer) appendSPSPPS(out []byte) []byte {
// TODO chef: 检查spspps是否存在
if m.spspps == nil {
nazalog.Warnf("append spspps by not exist. [%s]", m.UniqueKey)
return out
}
index := 10
nnals := m.spspps[index] & 0x1f
index++

Loading…
Cancel
Save