mirror of
https://github.com/livekit/livekit.git
synced 2026-04-04 10:25:39 +00:00
* Use delta stats throughout and avoid calculating deltas in telemetry * Fix a few things after testing * Remove debug * Fix tests * delete instead of setting to nil * Point to the latest protocol
19 lines
295 B
Go
19 lines
295 B
Go
package buffer
|
|
|
|
type LayerStats struct {
|
|
Packets uint32
|
|
Bytes uint64
|
|
Frames uint32
|
|
}
|
|
|
|
type StreamStatsWithLayers struct {
|
|
RTPStats *RTPDeltaInfo
|
|
Layers map[int]LayerStats
|
|
}
|
|
|
|
type ConnectionQualityParams struct {
|
|
LossPercentage float32
|
|
Jitter float32
|
|
Rtt uint32
|
|
}
|