mirror of
https://github.com/aler9/gortsplib
synced 2025-10-08 00:20:05 +08:00
9 lines
229 B
Go
9 lines
229 B
Go
// Package h264 contains utilities to work with the H264 codec.
|
|
package h264
|
|
|
|
const (
|
|
// MaxNALUSize is the maximum size of a NALU.
|
|
// with a 250 Mbps H264 video, the maximum NALU size is 2.2MB
|
|
MaxNALUSize = 3 * 1024 * 1024
|
|
)
|