Files
gortsplib/pkg/aac/aac.go
2022-05-10 13:33:45 +02:00

11 lines
291 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
// SamplesPerAccessUnit is the number of samples contained by a single AAC AU.
SamplesPerAccessUnit = 1024
)