forked from External/mediamtx
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
|
|
}
|