mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 01:35:02 +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
|
||
|
}
|