summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/rtp/partitionheadchecker.go
blob: 6ec2a7631bbe6450f360eaa471a3c85df3c73a89 (plain)
1
2
3
4
5
6
package rtp

// PartitionHeadChecker is the interface that checks whether the packet is keyframe or not
type PartitionHeadChecker interface {
	IsPartitionHead([]byte) bool
}