File: partitionheadchecker.go

package info (click to toggle)
golang-github-pion-rtp 1.7.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, forky, sid, trixie
  • size: 472 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
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
}