partitionheadchecker.go 174 B

123456
  1. package rtp
  2. // PartitionHeadChecker is the interface that checks whether the packet is keyframe or not
  3. type PartitionHeadChecker interface {
  4. IsPartitionHead([]byte) bool
  5. }