mirror of
https://github.com/bluenviron/mediamtx.git
synced 2026-01-09 11:52:02 -08:00
7 lines
85 B
Go
7 lines
85 B
Go
package unit
|
|
|
|
// AC3 is a AC-3 data unit.
|
|
type AC3 struct {
|
|
Base
|
|
Frames [][]byte
|
|
}
|