github.com/bluenviron/mediacommon@v1.9.3/pkg/formats/mpegts/codec.go (about)

     1  package mpegts
     2  
     3  import (
     4  	"github.com/asticode/go-astits"
     5  )
     6  
     7  // Codec is a MPEG-TS codec.
     8  type Codec interface {
     9  	IsVideo() bool
    10  
    11  	isCodec()
    12  	marshal(pid uint16) (*astits.PMTElementaryStream, error)
    13  }