Fix H264 processing for RtspServer project #244

This commit is contained in:
Alexey Khit
2023-02-09 06:42:04 +03:00
parent 557aac185d
commit 23db40220b
+4
View File
@@ -36,6 +36,10 @@ func RTPDepay(track *streamer.Track) streamer.WrapperFunc {
case NALUTypeSPS, NALUTypePPS:
buf = append(buf, payload...)
return nil
case NALUTypeSEI:
// RtspServer https://github.com/AlexxIT/go2rtc/issues/244
// sends, marked SPS, marked PPS, marked SEI, marked IFrame
return nil
}
}