Fix RTP processing for H265 codec (restore VPS,SPS,PPS)

This commit is contained in:
Alex X
2025-09-30 12:14:41 +03:00
parent 7d9862202a
commit c7119f4403
+5 -5
View File
@@ -9,8 +9,8 @@ import (
) )
func RTPDepay(codec *core.Codec, handler core.HandlerFunc) core.HandlerFunc { func RTPDepay(codec *core.Codec, handler core.HandlerFunc) core.HandlerFunc {
//vps, sps, pps := GetParameterSet(codec.FmtpLine) vps, sps, pps := GetParameterSet(codec.FmtpLine)
//ps := h264.EncodeAVC(vps, sps, pps) ps := h264.JoinNALU(vps, sps, pps)
buf := make([]byte, 0, 512*1024) // 512K buf := make([]byte, 0, 512*1024) // 512K
var nuStart int var nuStart int
@@ -40,9 +40,9 @@ func RTPDepay(codec *core.Codec, handler core.HandlerFunc) core.HandlerFunc {
nuType = data[2] & 0x3F nuType = data[2] & 0x3F
// push PS data before keyframe // push PS data before keyframe
//if len(buf) == 0 && nuType >= 19 && nuType <= 21 { if len(buf) == 0 && nuType >= 19 && nuType <= 21 {
// buf = append(buf, ps...) buf = append(buf, ps...)
//} }
nuStart = len(buf) nuStart = len(buf)
buf = append(buf, 0, 0, 0, 0) // NAL unit size buf = append(buf, 0, 0, 0, 0) // NAL unit size