mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 02:04:58 +00:00
8 lines
81 B
Go
8 lines
81 B
Go
|
package unit
|
||
|
|
||
|
// VP8 is a VP8 data unit.
|
||
|
type VP8 struct {
|
||
|
Base
|
||
|
Frame []byte
|
||
|
}
|