mirror of
				https://github.com/aler9/rtsp-simple-server
				synced 2025-10-31 11:06:28 +08:00 
			
		
		
		
	 534ea4d0c6
			
		
	
	534ea4d0c6
	
	
	
		
			
			rtpPacketsReceived, rtpPacketsSent, rtpPacketsLost, rtpPacketsJitter, rtcpPacketsReceived, rtcpPacketsSent
		
			
				
	
	
		
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package webrtc
 | |
| 
 | |
| // Stats are WebRTC statistics.
 | |
| type Stats struct {
 | |
| 	BytesReceived       uint64
 | |
| 	BytesSent           uint64
 | |
| 	RTPPacketsReceived  uint64
 | |
| 	RTPPacketsSent      uint64
 | |
| 	RTPPacketsLost      uint64
 | |
| 	RTPPacketsJitter    float64
 | |
| 	RTCPPacketsReceived uint64
 | |
| 	RTCPPacketsSent     uint64
 | |
| }
 |