mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-17 04:04:41 +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
|
||
|
}
|