mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-12 01:35:02 +00:00
8 lines
104 B
Go
8 lines
104 B
Go
|
package unit
|
||
|
|
||
|
// MPEG4Video is a MPEG-4 Video data unit.
|
||
|
type MPEG4Video struct {
|
||
|
Base
|
||
|
Frame []byte
|
||
|
}
|