The Real-time Transport Protocol ( RTP ) defines a standardized packet format for delivering audio and video over the Internet. It was developed by the Audio-Video Transport Working Group of the IETF and first published in 1996 as RFC 1889, and superseded by RFC 3550 in 2003.
RTP is used extensively in communication and entertainment systems that involve streaming media, such as telephony, video teleconference applications and web-based push to talk features. For these it carries media streams controlled by H.323, MGCP, Megaco, SCCP, or Session Initiation Protocol (SIP) signaling protocols, making it one of the technical foundations of the Voice over IP industry.
RTP is usually used in conjunction with the RTP Control Protocol (RTCP). While RTP carries the media streams (e.g., audio and video) or out-of-band events signaling (DTMF in separate payload type), RTCP is used to monitor transmission statistics and quality of service (QoS) information. When both protocols are used in conjunction, RTP is usually originated and received on even port numbers, whereas RTCP uses the next higher odd port number.
Overview
RTP was developed by the Audio/Video Transport working group of the IETF standards organization. RTP is used in conjunction with other protocols such as H.323 and RTSP. The RTP standard defines a pair of protocols, RTP and the Real-time Transport Control Protocol (RTCP). RTP is used for transfer of multimedia data, and the RTCP is used to periodically send control information and QOS parameters.
RTP is designed for end-to-end, real-time, transfer of multimedia data. The protocol provides facility for jitter compensation and detection of out of sequence arrival in data, that are common during transmissions on an IP network. RTP supports data transfer to multiple destinations through multicast. RTP is regarded as the primary standard for audio/video transport in IP networks and is used with an associated profile and payload format.
Multimedia applications need timely delivery and can tolerate some loss in packets. For example, loss of a packet in audio application may result in loss of a fraction of a second of audio data, which can be made unnoticeable with suitable error concealment algorithms. Multimedia applications require timeliness over reliability. The Transmission Control Protocol (TCP), although standardized for RTP use (RFC 4571), is not often used by RTP because of inherent latency introduced by connection establishment and error correction, instead the majority of the RTP implementations are built on the User Datagram Protocol (UDP). Other transport protocols specifically designed for multimedia sessions are SCTP and DCCP, although they are not in widespread use yet.
Protocol components
The RTP specification describes two sub-protocols:
- The data transfer protocol, which deals with the transfer of real-time multimedia data. Information provided by this protocol include timestamps (for synchronization), sequence numbers (for packet loss detection) and the payload format which indicates the encoded format of the data.
- The Real Time Control Protocol (RTCP) is used to specify Quality of Service (QOS) feedback and synchronization between the media streams. The bandwidth of RTCP traffic compared to RTP is small, typically around 5%.
Sessions
An RTP Session is established for each multimedia stream. A session consists of an IP address with a pair of ports for RTP and RTCP. For example, audio and video streams will have separate RTP sessions, enabling a receiver to deselect a particular stream. The ports which form a session are negotiated using other protocols such as RTSP (using SDP in the setup method) and SIP. According to the specification, an RTP port should be even and the RTCP port is the next higher odd port number. RTP and RTCP typically use unprivileged UDP ports (1024 to 65535), but may use other transport protocols (most notably, SCTP and DCCP) as well, as the protocol design is transport independent.
Profiles and Payload formats
See also: RTP Audio Video ProfilesOne of the design considerations of the RTP was to support a range of multimedia formats ( such as H.264, MPEG-4, MJPEG, MPEG, etc., ) and allow new formats to be incorporate RTP without revising the RTP standard. The design of RTP is based the architectural principle known as Application Level Framing (ALF). The information required by a specific application needs are not present in the generic RTP header and are specified by RTP Profiles and Payload formats. For each class of application (e.g., audio, video), RTP defines a profile and one or more associated payload formats .
The Profile defines the codecs used to encode the payload data and their mapping to payload format codes in the "Payload Type" field of the header( See below ). Each profile is accompanied by several payload format specifications, each of which describes the transport of a particular encoded data. Some of the audio payload formats include: G.711, G.723, G.726, G.729, GSM, QCELP, MP3, DTMF etc., and some of the video payload formats include: H.261, H.263, H.264, MPEG etc.
Examples of RTP Profiles include:
- The RTP profile for Audio and video conferences with minimal control (RFC 3551) defines a set of static payload type assignments, and a mechanism for mapping between a payload format, and a payload type identifier (in header) using Session Description Protocol (SDP).
- The Secure Real-time Transport Protocol (SRTP) (RFC 3711) defines a profile of RTP that provides cryptographic services for the transfer of payload data.
A complete specification of RTP for a particular application usage will require a profile and/or payload format specification(s).
Packet header
The RTP header has a minimum size of 12 bytes. After the header, optional header extensions may be present. This is followed by the RTP payload, the format of which is determined by the particular class of application. The fields in the header are as follows:
- Ver. : (2 bits) Indicates the version of the protocol. Current version is 2.
- P (Padding) : (1 bit) Used to indicate if there are extra padding bytes at the end of the RTP packet. A padding might be used to fill up the a block of certain size, for example as required by an encryption algorithm.
- X (Extension) : (1 bit) Indicates presence of an Extension header between standard header and payload data. This is application / profile specific.
- CC (CSRC Count) : (4 bits) Contains the number of CSRC identifiers (defined below) that follow the fixed header.
- M (Marker) : (1 bit) Used at the application level and is defined by a profile. If it is set, it means that the current data has some special relevance for the application.
- PT (Payload Type) : (7 bits) Indicates the format of the payload and determines its interpretation by the application. This is specified by an RTP profile. For example, see RTP Profile for audio and video conferences with minimal control (RFC 3551).
- Sequence Number : (16 bits) The sequence number is incremented by one for each RTP data packet sent and is to be used by the receiver to detect packet loss and to restore packet sequence. The RTP does not take any action when it sees a packet loss, but it is left to the application to take the desired action. For example, video applications may play the last known frame in place of the missing frame. According to the RFC 3550, The initial value of the sequence number should be random to make known-plaintext attacks on encryption more difficult. RTP provides no guarantee of delivery, but the presence of sequence numbers makes it possible to detect missing packets.
- Timestamp : (32 bits) Used to enable the receiver to playback the received samples at appropriate intervals. When several media streams are present, the timestamps are independent in each stream, and may not be relied upon for media synchronization. The granularity of the timing is application specific. For example, an audio application that samples data once every 125 µs could use that value as its clock resolution. The clock granularity is one of the details that is specified in the RTP profile or payload format for an application.
- SSRC : (32 bits) Synchronization source identifier uniquely identifies the source of a stream. The synchronization sources within the same RTP session will be unique.
- CSRC : Contributing source IDs enumerate contributing sources to a stream which has been generated from multiple sources.
- Extension header : (optional) The first 32-bit word contains a profile specific identifier (16 bits) and a length specifier (16 bits) that indicates the length of the extension (EHL=extension header length) in 32-bit units, excluding the 32 bits of the extension header.
RTP-based systems
A complete network based system will include other protocols and standards in conjunction with RTP. Protocols like SIP, RTSP, H.225 and H.245 are used for session initiation, control and termination. Other standards like H.264, MPEG, H.263 etc., are used to encode the payload data (specified via RTP Profile).
An RTP sender captures the multimedia data, which are then encoded as frames and transmitted as R
Real-Time Web Protocol PubSubHubbub Explained
Real-time web protocol PubSubHubbub's co-creator Brett Slatkin, an engineer at Google, gave a talk at Facebook headquarters today about how the new information delivery system ...
RTSP: Real-Time Streaming Protocol
Real-Time Stream Control Protocol (RTSP) ... The Real-Time Streaming Protocol allows to control multimedia streams delivered, for example, via RTP.
Real-time Transport Protocol - Wikipedia, the free encyclopedia
The Real-time Transport Protocol (RTP) defines a standardized packet format for delivering audio and video over the Internet. It was developed by the Audio-Video Transport Working ...
Real Time Messaging Protocol - Wikipedia, the free encyclopedia
[edit] Operation. The raw TCP-based RTMP maintains a single persistent connection and allows real-time communication. To guarantee smooth delivery of video and audio streams, while ...
Real Time Streaming Protocol - Simple English Wikipedia, the free ...
The Real Time Streaming Protocol (RTSP), developed by the IETF and created in 1998 as RFC 2326, is a protocol for use in streaming media systems, which allows a client to remotely ...
RTCP - Real Time Transport Protocol
RTCP stands for Real Time Transport Protocol and is defined in RFC 3550. RTCP works hand in hand with RTP
RTP: About RTP and the Audio-Video Transport Working Group
RFC 4351 (Real-Time Transport Protocol (RTP) Payload for Text Conversation Interleaved in an Audio Stream) published January 11, 2006 RFC 4348 (Real-Time Transport Protocol (RTP ...
RTP - Real Time Transport Protocol
RTP - short for Real Time Transport Protocol defines a standard packet format for delivering audio and video over the internet.
RTCP
Acronym Finder: RTCP stands for Real-Time Control Protocol
Real-time Streaming Protocol - What does RSTP stand for? Acronyms and ...
Acronym Definition; RSTP: Rapid Spanning Tree Protocol (IEEE 802.1w) RSTP: Real-Time Streaming Protocol (RFC 2326) RSTP: Regional Surface Transportation Program (Canada)