We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2eaf03 commit 9f0153eCopy full SHA for 9f0153e
pkg/h264/helper.go
@@ -9,6 +9,7 @@ import (
9
const (
10
NALUTypePFrame = 1
11
NALUTypeIFrame = 5
12
+ NALUTypeSEI = 6
13
NALUTypeSPS = 7
14
NALUTypePPS = 8
15
)
pkg/h264/rtp.go
@@ -53,6 +53,9 @@ func RTPDepay(track *streamer.Track) streamer.WrapperFunc {
53
//println("new PPS")
54
pps = unit
55
continue
56
+ case NALUTypeSEI:
57
+ // some unnecessary text information
58
+ continue
59
}
60
61
// ffmpeg with `-tune zerolatency` enable option `-x264opts sliced-threads=1`
0 commit comments