mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-28 05:51:59 -08:00
12 lines
131 B
Go
12 lines
131 B
Go
package unit
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// Opus is a Opus data unit.
|
|
type Opus struct {
|
|
Base
|
|
PTS time.Duration
|
|
Packets [][]byte
|
|
}
|