mirror of
https://github.com/aler9/gortsplib
synced 2025-09-27 03:25:52 +08:00
92 lines
2.5 KiB
Go
92 lines
2.5 KiB
Go
package gortsplib
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/bluenviron/gortsplib/v4/pkg/description"
|
|
"github.com/bluenviron/gortsplib/v4/pkg/format"
|
|
)
|
|
|
|
// StatsSessionFormat are session format statistics.
|
|
//
|
|
// Deprecated: replaced by SessionStatsFormat
|
|
type StatsSessionFormat = SessionStatsFormat
|
|
|
|
// StatsSessionMedia are session media statistics.
|
|
//
|
|
// Deprecated: replaced by SessionStatsMedia
|
|
type StatsSessionMedia = SessionStatsMedia
|
|
|
|
// StatsSession are session statistics.
|
|
//
|
|
// Deprecated: replaced by SessionStats.
|
|
type StatsSession = SessionStats
|
|
|
|
// SessionStatsFormat are session format statistics.
|
|
type SessionStatsFormat struct {
|
|
// number of RTP packets correctly received and processed
|
|
RTPPacketsReceived uint64
|
|
// number of sent RTP packets
|
|
RTPPacketsSent uint64
|
|
// number of lost RTP packets
|
|
RTPPacketsLost uint64
|
|
// mean jitter of received RTP packets
|
|
RTPPacketsJitter float64
|
|
// local SSRC
|
|
LocalSSRC uint32
|
|
// remote SSRC
|
|
RemoteSSRC uint32
|
|
// last sequence number of incoming/outgoing RTP packets
|
|
RTPPacketsLastSequenceNumber uint16
|
|
// last RTP time of incoming/outgoing RTP packets
|
|
RTPPacketsLastRTP uint32
|
|
// last NTP time of incoming/outgoing NTP packets
|
|
RTPPacketsLastNTP time.Time
|
|
}
|
|
|
|
// SessionStatsMedia are session media statistics.
|
|
type SessionStatsMedia struct {
|
|
// received bytes
|
|
BytesReceived uint64
|
|
// sent bytes
|
|
BytesSent uint64
|
|
// number of RTP packets that could not be processed
|
|
RTPPacketsInError uint64
|
|
// number of RTCP packets correctly received and processed
|
|
RTCPPacketsReceived uint64
|
|
// number of sent RTCP packets
|
|
RTCPPacketsSent uint64
|
|
// number of RTCP packets that could not be processed
|
|
RTCPPacketsInError uint64
|
|
|
|
// format statistics
|
|
Formats map[format.Format]SessionStatsFormat
|
|
}
|
|
|
|
// SessionStats are session statistics.
|
|
type SessionStats struct {
|
|
// received bytes
|
|
BytesReceived uint64
|
|
// sent bytes
|
|
BytesSent uint64
|
|
// number of RTP packets correctly received and processed
|
|
RTPPacketsReceived uint64
|
|
// number of sent RTP packets
|
|
RTPPacketsSent uint64
|
|
// number of lost RTP packets
|
|
RTPPacketsLost uint64
|
|
// number of RTP packets that could not be processed
|
|
RTPPacketsInError uint64
|
|
// mean jitter of received RTP packets
|
|
RTPPacketsJitter float64
|
|
// number of RTCP packets correctly received and processed
|
|
RTCPPacketsReceived uint64
|
|
// number of sent RTCP packets
|
|
RTCPPacketsSent uint64
|
|
// number of RTCP packets that could not be processed
|
|
RTCPPacketsInError uint64
|
|
|
|
// media statistics
|
|
Medias map[*description.Media]SessionStatsMedia
|
|
}
|