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

     1  // Package h265 contains utilities to work with the H265 codec.
     2  package h265
     3  
     4  const (
     5  	// MaxAccessUnitSize is the maximum size of an access unit.
     6  	// With a 50 Mbps 2160p60 H265 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  )