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