mirror of
https://github.com/livekit/livekit.git
synced 2026-04-25 09:02:11 +00:00
21 lines
360 B
Go
21 lines
360 B
Go
package buffer
|
|
|
|
import "github.com/livekit/protocol/livekit"
|
|
|
|
type LayerStats struct {
|
|
TotalPackets uint32
|
|
TotalBytes uint64
|
|
TotalFrames uint32
|
|
}
|
|
|
|
type StreamStatsWithLayers struct {
|
|
RTPStats *livekit.RTPStats
|
|
Layers map[int]LayerStats
|
|
}
|
|
|
|
type ConnectionQualityParams struct {
|
|
LossPercentage float32
|
|
Jitter float32
|
|
Rtt uint32
|
|
}
|