mirror of
https://github.com/aler9/gortsplib
synced 2025-10-22 14:49:31 +08:00
8 lines
181 B
Go
8 lines
181 B
Go
// Package aac contains utilities to work with the AAC codec.
|
|
package aac
|
|
|
|
const (
|
|
// MaxAccessUnitSize is the maximum size of an Access Unit (AU).
|
|
MaxAccessUnitSize = 5 * 1024
|
|
)
|