srs/trunk/3rdparty/srs-bench/vendor/github.com/pion/rtp/partitionheadchecker.go
Haibo Chen(陈海博) 974826800f
update pion/webrtc to v4. v7.0.34 (#4359)
To enable H.265 support for the WebRTC protocol, upgrade the pion/webrtc
library to version 4.

---------

Co-authored-by: john <hondaxiao@tencent.com>
Co-authored-by: winlin <winlinvip@gmail.com>
2025-05-26 17:48:53 +08:00

10 lines
277 B
Go

// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package rtp
// PartitionHeadChecker is the interface that checks whether the packet is keyframe or not.
type PartitionHeadChecker interface {
IsPartitionHead([]byte) bool
}