mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-07 07:20:01 +00:00
8 lines
106 B
Go
8 lines
106 B
Go
|
package unit
|
||
|
|
||
|
// MPEG1Video is a MPEG-1/2 Video data unit.
|
||
|
type MPEG1Video struct {
|
||
|
Base
|
||
|
Frame []byte
|
||
|
}
|