github.com/bluenviron/mediacommon@v1.9.3/pkg/codecs/av1/av1.go (about)

     1  // Package av1 contains utilities to work with the AV1 codec.
     2  package av1
     3  
     4  const (
     5  	// MaxTemporalUnitSize is the maximum size of a temporal unit.
     6  	MaxTemporalUnitSize = 3 * 1024 * 1024
     7  
     8  	// MaxOBUsPerTemporalUnit is the maximum number of OBUs per temporal unit.
     9  	MaxOBUsPerTemporalUnit = 10
    10  )