partitionheadchecker.go 276 B

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