mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-08 16:00:03 +00:00
8 lines
81 B
Go
8 lines
81 B
Go
|
package unit
|
||
|
|
||
|
// VP9 is a VP9 data unit.
|
||
|
type VP9 struct {
|
||
|
Base
|
||
|
Frame []byte
|
||
|
}
|