mirror of
https://github.com/aler9/rtsp-simple-server
synced 2025-09-26 19:51:26 +08:00
8 lines
109 B
Go
8 lines
109 B
Go
package unit
|
|
|
|
// MPEG1Audio is a MPEG-1/2 Audio data unit.
|
|
type MPEG1Audio struct {
|
|
Base
|
|
Frames [][]byte
|
|
}
|