Difference between revisions of "RTCP"

From VideoLAN Wiki
Jump to navigation Jump to search
(Create a page that isn't a copyvio: I'm making sense of what the protocol is useful for, in simpler terms)
 
m (→‎Links: New section with RFC link)
 
Line 5: Line 5:
  
 
Informally, it's similar to the "Tools" -> "Media Information" -> "Statistics" display that the Qt interface of VLC will show about playing media.
 
Informally, it's similar to the "Tools" -> "Media Information" -> "Statistics" display that the Qt interface of VLC will show about playing media.
 +
 +
== Links ==
 +
* [https://tools.ietf.org/html/rfc3550#section-6 RFC 3550]: RTP section 6: RTCP
  
 
[[Category:Protocols]]
 
[[Category:Protocols]]

Latest revision as of 06:02, 26 February 2019

RTCP or RTP control protocol is a protocol that works with RTP (Real-time transport protocol).
Whereas RTP sends media (e.g. a video stream) over an Internet connection. RTCP sends information about the quality of the stream – things like dropped packets or skipped frames – to report the status of the connection itself (and a few other things). It does not send any media whatsoever.

Informally, it's similar to the "Tools" -> "Media Information" -> "Statistics" display that the Qt interface of VLC will show about playing media.

Links