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

     1  // Package h264 contains utilities to work with the H264 codec.
     2  package h264
     3  
     4  const (
     5  	// MaxAccessUnitSize is the maximum size of an access unit.
     6  	// With a 50 Mbps 2160p60 H264 video, the maximum size does not seem to exceed 8 MiB.
     7  	MaxAccessUnitSize = 8 * 1024 * 1024
     8  
     9  	// MaxNALUsPerAccessUnit is the maximum number of NALUs per access unit.
    10  	MaxNALUsPerAccessUnit = 21
    11  )