mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
8 lines
85 B
Go
8 lines
85 B
Go
|
package unit
|
||
|
|
||
|
// AC3 is a AC-3 data unit.
|
||
|
type AC3 struct {
|
||
|
Base
|
||
|
Frames [][]byte
|
||
|
}
|