mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-20 02:00:05 -08:00
7 lines
109 B
Go
7 lines
109 B
Go
package unit
|
|
|
|
// MPEG1Audio is a MPEG-1/2 Audio data unit.
|
|
type MPEG1Audio struct {
|
|
Base
|
|
Frames [][]byte
|
|
}
|