mirror of
https://github.com/livekit/livekit.git
synced 2026-08-06 23:39:43 +00:00
Add vp9 svc support by Dependency Descriptor (#1586)
* Add VP9 SVC support * Fix preferred fps does not work * Fix forwarder test
This commit is contained in:
@@ -564,6 +564,8 @@ func (b *Buffer) getExtPacket(rtpPacket *rtp.Packet, arrivalTime int64) *ExtPack
|
||||
ep.KeyFrame = IsH264Keyframe(rtpPacket.Payload)
|
||||
case "video/av1":
|
||||
ep.KeyFrame = IsAV1Keyframe(rtpPacket.Payload)
|
||||
case "video/vp9":
|
||||
ep.KeyFrame = IsVP9Keyframe(rtpPacket.Payload)
|
||||
}
|
||||
|
||||
if ep.KeyFrame {
|
||||
|
||||
Reference in New Issue
Block a user