mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-29 22:42:00 -08:00
12 lines
157 B
Go
12 lines
157 B
Go
package unit
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// MPEG4AudioGeneric is a MPEG-4 Audio data unit.
|
|
type MPEG4AudioGeneric struct {
|
|
Base
|
|
PTS time.Duration
|
|
AUs [][]byte
|
|
}
|