RFC1889.txt
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:184k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. START
  2. Network Working Group                Audio-Video Transport Working Group
  3. Request for Comments: 1889                                H. Schulzrinne
  4. Category: Standards Track                                      GMD Fokus
  5.                                                                S. Casner
  6.                                                   Precept Software, Inc.
  7.                                                             R. Frederick
  8.                                          Xerox Palo Alto Research Center
  9.                                                              V. Jacobson
  10.                                    Lawrence Berkeley National Laboratory
  11.                                                             January 1996
  12.           RTP: A Transport Protocol for Real-Time Applications
  13. Status of this Memo
  14.    This document specifies an Internet standards track protocol for the
  15.    Internet community, and requests discussion and suggestions for
  16.    improvements.  Please refer to the current edition of the "Internet
  17.    Official Protocol Standards" (STD 1) for the standardization state
  18.    and status of this protocol.  Distribution of this memo is unlimited.
  19. Abstract
  20.    This memorandum describes RTP, the real-time transport protocol. RTP
  21.    provides end-to-end network transport functions suitable for
  22.    applications transmitting real-time data, such as audio, video or
  23.    simulation data, over multicast or unicast network services. RTP does
  24.    not address resource reservation and does not guarantee quality-of-
  25.    service for real-time services. The data transport is augmented by a
  26.    control protocol (RTCP) to allow monitoring of the data delivery in a
  27.    manner scalable to large multicast networks, and to provide minimal
  28.    control and identification functionality. RTP and RTCP are designed
  29.    to be independent of the underlying transport and network layers. The
  30.    protocol supports the use of RTP-level translators and mixers.
  31. Table of Contents
  32.    1.         Introduction ........................................    3
  33.    2.         RTP Use Scenarios ...................................    5
  34.    2.1        Simple Multicast Audio Conference ...................    5
  35.    2.2        Audio and Video Conference ..........................    6
  36.    2.3        Mixers and Translators ..............................    6
  37.    3.         Definitions .........................................    7
  38.    4.         Byte Order, Alignment, and Time Format ..............    9
  39.    5.         RTP Data Transfer Protocol ..........................   10
  40.    5.1        RTP Fixed Header Fields .............................   10
  41.    5.2        Multiplexing RTP Sessions ...........................   13
  42. Schulzrinne, et al          Standards Track                     [Page 1]
  43. RFC 1889                          RTP                       January 1996
  44.    5.3        Profile-Specific Modifications to the RTP Header.....   14
  45.    5.3.1      RTP Header Extension ................................   14
  46.    6.         RTP Control Protocol -- RTCP ........................   15
  47.    6.1        RTCP Packet Format ..................................   17
  48.    6.2        RTCP Transmission Interval ..........................   19
  49.    6.2.1      Maintaining the number of session members ...........   21
  50.    6.2.2      Allocation of source description bandwidth ..........   21
  51.    6.3        Sender and Receiver Reports .........................   22
  52.    6.3.1      SR: Sender report RTCP packet .......................   23
  53.    6.3.2      RR: Receiver report RTCP packet .....................   28
  54.    6.3.3      Extending the sender and receiver reports ...........   29
  55.    6.3.4      Analyzing sender and receiver reports ...............   29
  56.    6.4        SDES: Source description RTCP packet ................   31
  57.    6.4.1      CNAME: Canonical end-point identifier SDES item .....   32
  58.    6.4.2      NAME: User name SDES item ...........................   34
  59.    6.4.3      EMAIL: Electronic mail address SDES item ............   34
  60.    6.4.4      PHONE: Phone number SDES item .......................   34
  61.    6.4.5      LOC: Geographic user location SDES item .............   35
  62.    6.4.6      TOOL: Application or tool name SDES item ............   35
  63.    6.4.7      NOTE: Notice/status SDES item .......................   35
  64.    6.4.8      PRIV: Private extensions SDES item ..................   36
  65.    6.5        BYE: Goodbye RTCP packet ............................   37
  66.    6.6        APP: Application-defined RTCP packet ................   38
  67.    7.         RTP Translators and Mixers ..........................   39
  68.    7.1        General Description .................................   39
  69.    7.2        RTCP Processing in Translators ......................   41
  70.    7.3        RTCP Processing in Mixers ...........................   43
  71.    7.4        Cascaded Mixers .....................................   44
  72.    8.         SSRC Identifier Allocation and Use ..................   44
  73.    8.1        Probability of Collision ............................   44
  74.    8.2        Collision Resolution and Loop Detection .............   45
  75.    9.         Security ............................................   49
  76.    9.1        Confidentiality .....................................   49
  77.    9.2        Authentication and Message Integrity ................   50
  78.    10.        RTP over Network and Transport Protocols ............   51
  79.    11.        Summary of Protocol Constants .......................   51
  80.    11.1       RTCP packet types ...................................   52
  81.    11.2       SDES types ..........................................   52
  82.    12.        RTP Profiles and Payload Format Specifications ......   53
  83.    A.         Algorithms ..........................................   56
  84.    A.1        RTP Data Header Validity Checks .....................   59
  85.    A.2        RTCP Header Validity Checks .........................   63
  86.    A.3        Determining the Number of RTP Packets Expected and
  87.               Lost ................................................   63
  88.    A.4        Generating SDES RTCP Packets ........................   64
  89.    A.5        Parsing RTCP SDES Packets ...........................   65
  90.    A.6        Generating a Random 32-bit Identifier ...............   66
  91.    A.7        Computing the RTCP Transmission Interval ............   68
  92. Schulzrinne, et al          Standards Track                     [Page 2]
  93. RFC 1889                          RTP                       January 1996
  94.    A.8        Estimating the Interarrival Jitter ..................   71
  95.    B.         Security Considerations .............................   72
  96.    C.         Addresses of Authors ................................   72
  97.    D.         Bibliography ........................................   73
  98. 1.  Introduction
  99.    This memorandum specifies the real-time transport protocol (RTP),
  100.    which provides end-to-end delivery services for data with real-time
  101.    characteristics, such as interactive audio and video. Those services
  102.    include payload type identification, sequence numbering, timestamping
  103.    and delivery monitoring. Applications typically run RTP on top of UDP
  104.    to make use of its multiplexing and checksum services; both protocols
  105.    contribute parts of the transport protocol functionality. However,
  106.    RTP may be used with other suitable underlying network or transport
  107.    protocols (see Section 10). RTP supports data transfer to multiple
  108.    destinations using multicast distribution if provided by the
  109.    underlying network.
  110.    Note that RTP itself does not provide any mechanism to ensure timely
  111.    delivery or provide other quality-of-service guarantees, but relies
  112.    on lower-layer services to do so. It does not guarantee delivery or
  113.    prevent out-of-order delivery, nor does it assume that the underlying
  114.    network is reliable and delivers packets in sequence. The sequence
  115.    numbers included in RTP allow the receiver to reconstruct the
  116.    sender's packet sequence, but sequence numbers might also be used to
  117.    determine the proper location of a packet, for example in video
  118.    decoding, without necessarily decoding packets in sequence.
  119.    While RTP is primarily designed to satisfy the needs of multi-
  120.    participant multimedia conferences, it is not limited to that
  121.    particular application. Storage of continuous data, interactive
  122.    distributed simulation, active badge, and control and measurement
  123.    applications may also find RTP applicable.
  124.    This document defines RTP, consisting of two closely-linked parts:
  125.         o the real-time transport protocol (RTP), to carry data that has
  126.          real-time properties.
  127.         o the RTP control protocol (RTCP), to monitor the quality of
  128.          service and to convey information about the participants in an
  129.          on-going session. The latter aspect of RTCP may be sufficient
  130.          for "loosely controlled" sessions, i.e., where there is no
  131.          explicit membership control and set-up, but it is not
  132.          necessarily intended to support all of an application's control
  133.          communication requirements.  This functionality may be fully or
  134.          partially subsumed by a separate session control protocol,
  135. Schulzrinne, et al          Standards Track                     [Page 3]
  136. RFC 1889                          RTP                       January 1996
  137.          which is beyond the scope of this document.
  138.    RTP represents a new style of protocol following the principles of
  139.    application level framing and integrated layer processing proposed by
  140.    Clark and Tennenhouse [1]. That is, RTP is intended to be malleable
  141.    to provide the information required by a particular application and
  142.    will often be integrated into the application processing rather than
  143.    being implemented as a separate layer. RTP is a protocol framework
  144.    that is deliberately not complete.  This document specifies those
  145.    functions expected to be common across all the applications for which
  146.    RTP would be appropriate. Unlike conventional protocols in which
  147.    additional functions might be accommodated by making the protocol
  148.    more general or by adding an option mechanism that would require
  149.    parsing, RTP is intended to be tailored through modifications and/or
  150.    additions to the headers as needed. Examples are given in Sections
  151.    5.3 and 6.3.3.
  152.    Therefore, in addition to this document, a complete specification of
  153.    RTP for a particular application will require one or more companion
  154.    documents (see Section 12):
  155.         o a profile specification document, which defines a set of
  156.          payload type codes and their mapping to payload formats (e.g.,
  157.          media encodings). A profile may also define extensions or
  158.          modifications to RTP that are specific to a particular class of
  159.          applications.  Typically an application will operate under only
  160.          one profile. A profile for audio and video data may be found in
  161.          the companion RFC TBD.
  162.         o payload format specification documents, which define how a
  163.          particular payload, such as an audio or video encoding, is to
  164.          be carried in RTP.
  165.    A discussion of real-time services and algorithms for their
  166.    implementation as well as background discussion on some of the RTP
  167.    design decisions can be found in [2].
  168.    Several RTP applications, both experimental and commercial, have
  169.    already been implemented from draft specifications. These
  170.    applications include audio and video tools along with diagnostic
  171.    tools such as traffic monitors. Users of these tools number in the
  172.    thousands.  However, the current Internet cannot yet support the full
  173.    potential demand for real-time services. High-bandwidth services
  174.    using RTP, such as video, can potentially seriously degrade the
  175.    quality of service of other network services. Thus, implementors
  176.    should take appropriate precautions to limit accidental bandwidth
  177.    usage. Application documentation should clearly outline the
  178.    limitations and possible operational impact of high-bandwidth real-
  179. Schulzrinne, et al          Standards Track                     [Page 4]
  180. RFC 1889                          RTP                       January 1996
  181.    time services on the Internet and other network services.
  182. 2.  RTP Use Scenarios
  183.    The following sections describe some aspects of the use of RTP. The
  184.    examples were chosen to illustrate the basic operation of
  185.    applications using RTP, not to limit what RTP may be used for. In
  186.    these examples, RTP is carried on top of IP and UDP, and follows the
  187.    conventions established by the profile for audio and video specified
  188.    in the companion Internet-Draft draft-ietf-avt-profile
  189. 2.1 Simple Multicast Audio Conference
  190.    A working group of the IETF meets to discuss the latest protocol
  191.    draft, using the IP multicast services of the Internet for voice
  192.    communications. Through some allocation mechanism the working group
  193.    chair obtains a multicast group address and pair of ports. One port
  194.    is used for audio data, and the other is used for control (RTCP)
  195.    packets.  This address and port information is distributed to the
  196.    intended participants. If privacy is desired, the data and control
  197.    packets may be encrypted as specified in Section 9.1, in which case
  198.    an encryption key must also be generated and distributed.  The exact
  199.    details of these allocation and distribution mechanisms are beyond
  200.    the scope of RTP.
  201.    The audio conferencing application used by each conference
  202.    participant sends audio data in small chunks of, say, 20 ms duration.
  203.    Each chunk of audio data is preceded by an RTP header; RTP header and
  204.    data are in turn contained in a UDP packet. The RTP header indicates
  205.    what type of audio encoding (such as PCM, ADPCM or LPC) is contained
  206.    in each packet so that senders can change the encoding during a
  207.    conference, for example, to accommodate a new participant that is
  208.    connected through a low-bandwidth link or react to indications of
  209.    network congestion.
  210.    The Internet, like other packet networks, occasionally loses and
  211.    reorders packets and delays them by variable amounts of time. To cope
  212.    with these impairments, the RTP header contains timing information
  213.    and a sequence number that allow the receivers to reconstruct the
  214.    timing produced by the source, so that in this example, chunks of
  215.    audio are contiguously played out the speaker every 20 ms. This
  216.    timing reconstruction is performed separately for each source of RTP
  217.    packets in the conference. The sequence number can also be used by
  218.    the receiver to estimate how many packets are being lost.
  219.    Since members of the working group join and leave during the
  220.    conference, it is useful to know who is participating at any moment
  221.    and how well they are receiving the audio data. For that purpose,
  222. Schulzrinne, et al          Standards Track                     [Page 5]
  223. RFC 1889                          RTP                       January 1996
  224.    each instance of the audio application in the conference periodically
  225.    multicasts a reception report plus the name of its user on the RTCP
  226.    (control) port. The reception report indicates how well the current
  227.    speaker is being received and may be used to control adaptive
  228.    encodings. In addition to the user name, other identifying
  229.    information may also be included subject to control bandwidth limits.
  230.    A site sends the RTCP BYE packet (Section 6.5) when it leaves the
  231.    conference.
  232. 2.2 Audio and Video Conference
  233.    If both audio and video media are used in a conference, they are
  234.    transmitted as separate RTP sessions RTCP packets are transmitted for
  235.    each medium using two different UDP port pairs and/or multicast
  236.    addresses. There is no direct coupling at the RTP level between the
  237.    audio and video sessions, except that a user participating in both
  238.    sessions should use the same distinguished (canonical) name in the
  239.    RTCP packets for both so that the sessions can be associated.
  240.    One motivation for this separation is to allow some participants in
  241.    the conference to receive only one medium if they choose. Further
  242.    explanation is given in Section 5.2. Despite the separation,
  243.    synchronized playback of a source's audio and video can be achieved
  244.    using timing information carried in the RTCP packets for both
  245.    sessions.
  246. 2.3 Mixers and Translators
  247.    So far, we have assumed that all sites want to receive  media data in
  248.    the same format. However, this may not always be appropriate.
  249.    Consider the case where participants in one area are connected
  250.    through a low-speed link to the majority of the conference
  251.    participants who enjoy high-speed network access. Instead of forcing
  252.    everyone to use a lower-bandwidth, reduced-quality audio encoding, an
  253.    RTP-level relay called a mixer may be placed near the low-bandwidth
  254.    area. This mixer resynchronizes incoming audio packets to reconstruct
  255.    the constant 20 ms spacing generated by the sender, mixes these
  256.    reconstructed audio streams into a single stream, translates the
  257.    audio encoding to a lower-bandwidth one and forwards the lower-
  258.    bandwidth packet stream across the low-speed link. These packets
  259.    might be unicast to a single recipient or multicast on a different
  260.    address to multiple recipients. The RTP header includes a means for
  261.    mixers to identify the sources that contributed to a mixed packet so
  262.    that correct talker indication can be provided at the receivers.
  263.    Some of the intended participants in the audio conference may be
  264.    connected with high bandwidth links but might not be directly
  265.    reachable via IP multicast. For example, they might be behind an
  266. Schulzrinne, et al          Standards Track                     [Page 6]
  267. RFC 1889                          RTP                       January 1996
  268.    application-level firewall that will not let any IP packets pass. For
  269.    these sites, mixing may not be necessary, in which case another type
  270.    of RTP-level relay called a translator may be used. Two translators
  271.    are installed, one on either side of the firewall, with the outside
  272.    one funneling all multicast packets received through a secure
  273.    connection to the translator inside the firewall. The translator
  274.    inside the firewall sends them again as multicast packets to a
  275.    multicast group restricted to the site's internal network.
  276.    Mixers and translators may be designed for a variety of purposes. An
  277.    example is a video mixer that scales the images of individual people
  278.    in separate video streams and composites them into one video stream
  279.    to simulate a group scene. Other examples of translation include the
  280.    connection of a group of hosts speaking only IP/UDP to a group of
  281.    hosts that understand only ST-II, or the packet-by-packet encoding
  282.    translation of video streams from individual sources without
  283.    resynchronization or mixing. Details of the operation of mixers and
  284.    translators are given in Section 7.
  285. 3.  Definitions
  286.    RTP payload: The data transported by RTP in a packet, for example
  287.         audio samples or compressed video data. The payload format and
  288.         interpretation are beyond the scope of this document.
  289.    RTP packet: A data packet consisting of the fixed RTP header, a
  290.         possibly empty list of contributing sources (see below), and the
  291.         payload data. Some underlying protocols may require an
  292.         encapsulation of the RTP packet to be defined. Typically one
  293.         packet of the underlying protocol contains a single RTP packet,
  294.         but several RTP packets may be contained if permitted by the
  295.         encapsulation method (see Section 10).
  296.    RTCP packet: A control packet consisting of a fixed header part
  297.         similar to that of RTP data packets, followed by structured
  298.         elements that vary depending upon the RTCP packet type. The
  299.         formats are defined in Section 6. Typically, multiple RTCP
  300.         packets are sent together as a compound RTCP packet in a single
  301.         packet of the underlying protocol; this is enabled by the length
  302.         field in the fixed header of each RTCP packet.
  303.    Port: The "abstraction that transport protocols use to distinguish
  304.         among multiple destinations within a given host computer. TCP/IP
  305.         protocols identify ports using small positive integers." [3] The
  306.         transport selectors (TSEL) used by the OSI transport layer are
  307.         equivalent to ports.  RTP depends upon the lower-layer protocol
  308.         to provide some mechanism such as ports to multiplex the RTP and
  309.         RTCP packets of a session.
  310. Schulzrinne, et al          Standards Track                     [Page 7]
  311. RFC 1889                          RTP                       January 1996
  312.    Transport address: The combination of a network address and port that
  313.         identifies a transport-level endpoint, for example an IP address
  314.         and a UDP port. Packets are transmitted from a source transport
  315.         address to a destination transport address.
  316.    RTP session: The association among a set of participants
  317.         communicating with RTP. For each participant, the session is
  318.         defined by a particular pair of destination transport addresses
  319.         (one network address plus a port pair for RTP and RTCP). The
  320.         destination transport address pair may be common for all
  321.         participants, as in the case of IP multicast, or may be
  322.         different for each, as in the case of individual unicast network
  323.         addresses plus a common port pair.  In a multimedia session,
  324.         each medium is carried in a separate RTP session with its own
  325.         RTCP packets. The multiple RTP sessions are distinguished by
  326.         different port number pairs and/or different multicast
  327.         addresses.
  328.    Synchronization source (SSRC): The source of a stream of RTP packets,
  329.         identified by a 32-bit numeric SSRC identifier carried in the
  330.         RTP header so as not to be dependent upon the network address.
  331.         All packets from a synchronization source form part of the same
  332.         timing and sequence number space, so a receiver groups packets
  333.         by synchronization source for playback. Examples of
  334.         synchronization sources include the sender of a stream of
  335.         packets derived from a signal source such as a microphone or a
  336.         camera, or an RTP mixer (see below). A synchronization source
  337.         may change its data format, e.g., audio encoding, over time. The
  338.         SSRC identifier is a randomly chosen value meant to be globally
  339.         unique within a particular RTP session (see Section 8). A
  340.         participant need not use the same SSRC identifier for all the
  341.         RTP sessions in a multimedia session; the binding of the SSRC
  342.         identifiers is provided through RTCP (see Section 6.4.1).  If a
  343.         participant generates multiple streams in one RTP session, for
  344.         example from separate video cameras, each must be identified as
  345.         a different SSRC.
  346.    Contributing source (CSRC): A source of a stream of RTP packets that
  347.         has contributed to the combined stream produced by an RTP mixer
  348.         (see below). The mixer inserts a list of the SSRC identifiers of
  349.         the sources that contributed to the generation of a particular
  350.         packet into the RTP header of that packet. This list is called
  351.         the CSRC list. An example application is audio conferencing
  352.         where a mixer indicates all the talkers whose speech was
  353.         combined to produce the outgoing packet, allowing the receiver
  354.         to indicate the current talker, even though all the audio
  355.         packets contain the same SSRC identifier (that of the mixer).
  356. Schulzrinne, et al          Standards Track                     [Page 8]
  357. RFC 1889                          RTP                       January 1996
  358.    End system: An application that generates the content to be sent in
  359.         RTP packets and/or consumes the content of received RTP packets.
  360.         An end system can act as one or more synchronization sources in
  361.         a particular RTP session, but typically only one.
  362.    Mixer: An intermediate system that receives RTP packets from one or
  363.         more sources, possibly changes the data format, combines the
  364.         packets in some manner and then forwards a new RTP packet. Since
  365.         the timing among multiple input sources will not generally be
  366.         synchronized, the mixer will make timing adjustments among the
  367.         streams and generate its own timing for the combined stream.
  368.         Thus, all data packets originating from a mixer will be
  369.         identified as having the mixer as their synchronization source.
  370.    Translator: An intermediate system that forwards RTP packets with
  371.         their synchronization source identifier intact. Examples of
  372.         translators include devices that convert encodings without
  373.         mixing, replicators from multicast to unicast, and application-
  374.         level filters in firewalls.
  375.    Monitor: An application that receives RTCP packets sent by
  376.         participants in an RTP session, in particular the reception
  377.         reports, and estimates the current quality of service for
  378.         distribution monitoring, fault diagnosis and long-term
  379.         statistics. The monitor function is likely to be built into the
  380.         application(s) participating in the session, but may also be a
  381.         separate application that does not otherwise participate and
  382.         does not send or receive the RTP data packets. These are called
  383.         third party monitors.
  384.    Non-RTP means: Protocols and mechanisms that may be needed in
  385.         addition to RTP to provide a usable service. In particular, for
  386.         multimedia conferences, a conference control application may
  387.         distribute multicast addresses and keys for encryption,
  388.         negotiate the encryption algorithm to be used, and define
  389.         dynamic mappings between RTP payload type values and the payload
  390.         formats they represent for formats that do not have a predefined
  391.         payload type value. For simple applications, electronic mail or
  392.         a conference database may also be used. The specification of
  393.         such protocols and mechanisms is outside the scope of this
  394.         document.
  395. 4.  Byte Order, Alignment, and Time Format
  396.    All integer fields are carried in network byte order, that is, most
  397.    significant byte (octet) first. This byte order is commonly known as
  398.    big-endian. The transmission order is described in detail in [4].
  399.    Unless otherwise noted, numeric constants are in decimal (base 10).
  400. Schulzrinne, et al          Standards Track                     [Page 9]
  401. RFC 1889                          RTP                       January 1996
  402.    All header data is aligned to its natural length, i.e., 16-bit fields
  403.    are aligned on even offsets, 32-bit fields are aligned at offsets
  404.    divisible by four, etc. Octets designated as padding have the value
  405.    zero.
  406.    Wallclock time (absolute time) is represented using the timestamp
  407.    format of the Network Time Protocol (NTP), which is in seconds
  408.    relative to 0h UTC on 1 January 1900 [5]. The full resolution NTP
  409.    timestamp is a 64-bit unsigned fixed-point number with the integer
  410.    part in the first 32 bits and the fractional part in the last 32
  411.    bits. In some fields where a more compact representation is
  412.    appropriate, only the middle 32 bits are used; that is, the low 16
  413.    bits of the integer part and the high 16 bits of the fractional part.
  414.    The high 16 bits of the integer part must be determined
  415.    independently.
  416. 5.  RTP Data Transfer Protocol
  417. 5.1 RTP Fixed Header Fields
  418.       The RTP header has the following format:
  419.     0                   1                   2                   3
  420.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  421.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  422.    |V=2|P|X|  CC   |M|     PT      |       sequence number         |
  423.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  424.    |                           timestamp                           |
  425.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  426.    |           synchronization source (SSRC) identifier            |
  427.    +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  428.    |            contributing source (CSRC) identifiers             |
  429.    |                             ....                              |
  430.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  431.    The first twelve octets are present in every RTP packet, while the
  432.    list of CSRC identifiers is present only when inserted by a mixer.
  433.    The fields have the following meaning:
  434.    version (V): 2 bits
  435.         This field identifies the version of RTP. The version defined by
  436.         this specification is two (2). (The value 1 is used by the first
  437.         draft version of RTP and the value 0 is used by the protocol
  438.         initially implemented in the "vat" audio tool.)
  439.    padding (P): 1 bit
  440.         If the padding bit is set, the packet contains one or more
  441.         additional padding octets at the end which are not part of the
  442. Schulzrinne, et al          Standards Track                    [Page 10]
  443. RFC 1889                          RTP                       January 1996
  444.         payload. The last octet of the padding contains a count of how
  445.         many padding octets should be ignored. Padding may be needed by
  446.         some encryption algorithms with fixed block sizes or for
  447.         carrying several RTP packets in a lower-layer protocol data
  448.         unit.
  449.    extension (X): 1 bit
  450.         If the extension bit is set, the fixed header is followed by
  451.         exactly one header extension, with a format defined in Section
  452.         5.3.1.
  453.    CSRC count (CC): 4 bits
  454.         The CSRC count contains the number of CSRC identifiers that
  455.         follow the fixed header.
  456.    marker (M): 1 bit
  457.         The interpretation of the marker is defined by a profile. It is
  458.         intended to allow significant events such as frame boundaries to
  459.         be marked in the packet stream. A profile may define additional
  460.         marker bits or specify that there is no marker bit by changing
  461.         the number of bits in the payload type field (see Section 5.3).
  462.    payload type (PT): 7 bits
  463.         This field identifies the format of the RTP payload and
  464.         determines its interpretation by the application. A profile
  465.         specifies a default static mapping of payload type codes to
  466.         payload formats. Additional payload type codes may be defined
  467.         dynamically through non-RTP means (see Section 3). An initial
  468.         set of default mappings for audio and video is specified in the
  469.         companion profile Internet-Draft draft-ietf-avt-profile, and
  470.         may be extended in future editions of the Assigned Numbers RFC
  471.         [6].  An RTP sender emits a single RTP payload type at any given
  472.         time; this field is not intended for multiplexing separate media
  473.         streams (see Section 5.2).
  474.    sequence number: 16 bits
  475.         The sequence number increments by one for each RTP data packet
  476.         sent, and may be used by the receiver to detect packet loss and
  477.         to restore packet sequence. The initial value of the sequence
  478.         number is random (unpredictable) to make known-plaintext attacks
  479.         on encryption more difficult, even if the source itself does not
  480.         encrypt, because the packets may flow through a translator that
  481.         does. Techniques for choosing unpredictable numbers are
  482.         discussed in [7].
  483.    timestamp: 32 bits
  484.         The timestamp reflects the sampling instant of the first octet
  485.         in the RTP data packet. The sampling instant must be derived
  486. Schulzrinne, et al          Standards Track                    [Page 11]
  487. RFC 1889                          RTP                       January 1996
  488.         from a clock that increments monotonically and linearly in time
  489.         to allow synchronization and jitter calculations (see Section
  490.         6.3.1).  The resolution of the clock must be sufficient for the
  491.         desired synchronization accuracy and for measuring packet
  492.         arrival jitter (one tick per video frame is typically not
  493.         sufficient).  The clock frequency is dependent on the format of
  494.         data carried as payload and is specified statically in the
  495.         profile or payload format specification that defines the format,
  496.         or may be specified dynamically for payload formats defined
  497.         through non-RTP means. If RTP packets are generated
  498.         periodically, the nominal sampling instant as determined from
  499.         the sampling clock is to be used, not a reading of the system
  500.         clock. As an example, for fixed-rate audio the timestamp clock
  501.         would likely increment by one for each sampling period.  If an
  502.         audio application reads blocks covering 160 sampling periods
  503.         from the input device, the timestamp would be increased by 160
  504.         for each such block, regardless of whether the block is
  505.         transmitted in a packet or dropped as silent.
  506.    The initial value of the timestamp is random, as for the sequence
  507.    number. Several consecutive RTP packets may have equal timestamps if
  508.    they are (logically) generated at once, e.g., belong to the same
  509.    video frame. Consecutive RTP packets may contain timestamps that are
  510.    not monotonic if the data is not transmitted in the order it was
  511.    sampled, as in the case of MPEG interpolated video frames. (The
  512.    sequence numbers of the packets as transmitted will still be
  513.    monotonic.)
  514.    SSRC: 32 bits
  515.         The SSRC field identifies the synchronization source. This
  516.         identifier is chosen randomly, with the intent that no two
  517.         synchronization sources within the same RTP session will have
  518.         the same SSRC identifier. An example algorithm for generating a
  519.         random identifier is presented in Appendix A.6. Although the
  520.         probability of multiple sources choosing the same identifier is
  521.         low, all RTP implementations must be prepared to detect and
  522.         resolve collisions.  Section 8 describes the probability of
  523.         collision along with a mechanism for resolving collisions and
  524.         detecting RTP-level forwarding loops based on the uniqueness of
  525.         the SSRC identifier. If a source changes its source transport
  526.         address, it must also choose a new SSRC identifier to avoid
  527.         being interpreted as a looped source.
  528.    CSRC list: 0 to 15 items, 32 bits each
  529.         The CSRC list identifies the contributing sources for the
  530.         payload contained in this packet. The number of identifiers is
  531.         given by the CC field. If there are more than 15 contributing
  532.         sources, only 15 may be identified. CSRC identifiers are
  533. Schulzrinne, et al          Standards Track                    [Page 12]
  534. RFC 1889                          RTP                       January 1996
  535.         inserted by mixers, using the SSRC identifiers of contributing
  536.         sources. For example, for audio packets the SSRC identifiers of
  537.         all sources that were mixed together to create a packet are
  538.         listed, allowing correct talker indication at the receiver.
  539. 5.2 Multiplexing RTP Sessions
  540.    For efficient protocol processing, the number of multiplexing points
  541.    should be minimized, as described in the integrated layer processing
  542.    design principle [1]. In RTP, multiplexing is provided by the
  543.    destination transport address (network address and port number) which
  544.    define an RTP session. For example, in a teleconference composed of
  545.    audio and video media encoded separately, each medium should be
  546.    carried in a separate RTP session with its own destination transport
  547.    address. It is not intended that the audio and video be carried in a
  548.    single RTP session and demultiplexed based on the payload type or
  549.    SSRC fields. Interleaving packets with different payload types but
  550.    using the same SSRC would introduce several problems:
  551.         1.   If one payload type were switched during a session, there
  552.              would be no general means to identify which of the old
  553.              values the new one replaced.
  554.         2.   An SSRC is defined to identify a single timing and sequence
  555.              number space. Interleaving multiple payload types would
  556.              require different timing spaces if the media clock rates
  557.              differ and would require different sequence number spaces
  558.              to tell which payload type suffered packet loss.
  559.         3.   The RTCP sender and receiver reports (see Section 6.3) can
  560.              only describe one timing and sequence number space per SSRC
  561.              and do not carry a payload type field.
  562.         4.   An RTP mixer would not be able to combine interleaved
  563.              streams of incompatible media into one stream.
  564.         5.   Carrying multiple media in one RTP session precludes: the
  565.              use of different network paths or network resource
  566.              allocations if appropriate; reception of a subset of the
  567.              media if desired, for example just audio if video would
  568.              exceed the available bandwidth; and receiver
  569.              implementations that use separate processes for the
  570.              different media, whereas using separate RTP sessions
  571.              permits either single- or multiple-process implementations.
  572.    Using a different SSRC for each medium but sending them in the same
  573.    RTP session would avoid the first three problems but not the last
  574.    two.
  575. Schulzrinne, et al          Standards Track                    [Page 13]
  576. RFC 1889                          RTP                       January 1996
  577. 5.3 Profile-Specific Modifications to the RTP Header
  578.    The existing RTP data packet header is believed to be complete for
  579.    the set of functions required in common across all the application
  580.    classes that RTP might support. However, in keeping with the ALF
  581.    design principle, the header may be tailored through modifications or
  582.    additions defined in a profile specification while still allowing
  583.    profile-independent monitoring and recording tools to function.
  584.         o The marker bit and payload type field carry profile-specific
  585.          information, but they are allocated in the fixed header since
  586.          many applications are expected to need them and might otherwise
  587.          have to add another 32-bit word just to hold them. The octet
  588.          containing these fields may be redefined by a profile to suit
  589.          different requirements, for example with a more or fewer marker
  590.          bits. If there are any marker bits, one should be located in
  591.          the most significant bit of the octet since profile-independent
  592.          monitors may be able to observe a correlation between packet
  593.          loss patterns and the marker bit.
  594.         o Additional information that is required for a particular
  595.          payload format, such as a video encoding, should be carried in
  596.          the payload section of the packet. This might be in a header
  597.          that is always present at the start of the payload section, or
  598.          might be indicated by a reserved value in the data pattern.
  599.         o If a particular class of applications needs additional
  600.          functionality independent of payload format, the profile under
  601.          which those applications operate should define additional fixed
  602.          fields to follow immediately after the SSRC field of the
  603.          existing fixed header.  Those applications will be able to
  604.          quickly and directly access the additional fields while
  605.          profile-independent monitors or recorders can still process the
  606.          RTP packets by interpreting only the first twelve octets.
  607.    If it turns out that additional functionality is needed in common
  608.    across all profiles, then a new version of RTP should be defined to
  609.    make a permanent change to the fixed header.
  610. 5.3.1 RTP Header Extension
  611.    An extension mechanism is provided to allow individual
  612.    implementations to experiment with new payload-format-independent
  613.    functions that require additional information to be carried in the
  614.    RTP data packet header. This mechanism is designed so that the header
  615.    extension may be ignored by other interoperating implementations that
  616.    have not been extended.
  617. Schulzrinne, et al          Standards Track                    [Page 14]
  618. RFC 1889                          RTP                       January 1996
  619.    Note that this header extension is intended only for limited use.
  620.    Most potential uses of this mechanism would be better done another
  621.    way, using the methods described in the previous section. For
  622.    example, a profile-specific extension to the fixed header is less
  623.    expensive to process because it is not conditional nor in a variable
  624.    location. Additional information required for a particular payload
  625.    format should not use this header extension, but should be carried in
  626.    the payload section of the packet.
  627.     0                   1                   2                   3
  628.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  629.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  630.    |      defined by profile       |           length              |
  631.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  632.    |                        header extension                       |
  633.    |                             ....                              |
  634.    If the X bit in the RTP header is one, a variable-length header
  635.    extension is appended to the RTP header, following the CSRC list if
  636.    present. The header extension contains a 16-bit length field that
  637.    counts the number of 32-bit words in the extension, excluding the
  638.    four-octet extension header (therefore zero is a valid length). Only
  639.    a single extension may be appended to the RTP data header. To allow
  640.    multiple interoperating implementations to each experiment
  641.    independently with different header extensions, or to allow a
  642.    particular implementation to experiment with more than one type of
  643.    header extension, the first 16 bits of the header extension are left
  644.    open for distinguishing identifiers or parameters. The format of
  645.    these 16 bits is to be defined by the profile specification under
  646.    which the implementations are operating. This RTP specification does
  647.    not define any header extensions itself.
  648. 6.  RTP Control Protocol -- RTCP
  649.    The RTP control protocol (RTCP) is based on the periodic transmission
  650.    of control packets to all participants in the session, using the same
  651.    distribution mechanism as the data packets. The underlying protocol
  652.    must provide multiplexing of the data and control packets, for
  653.    example using separate port numbers with UDP. RTCP performs four
  654.    functions:
  655.         1.   The primary function is to provide feedback on the quality
  656.              of the data distribution. This is an integral part of the
  657.              RTP's role as a transport protocol and is related to the
  658.              flow and congestion control functions of other transport
  659.              protocols. The feedback may be directly useful for control
  660.              of adaptive encodings [8,9], but experiments with IP
  661. Schulzrinne, et al          Standards Track                    [Page 15]
  662. RFC 1889                          RTP                       January 1996
  663.              multicasting have shown that it is also critical to get
  664.              feedback from the receivers to diagnose faults in the
  665.              distribution. Sending reception feedback reports to all
  666.              participants allows one who is observing problems to
  667.              evaluate whether those problems are local or global. With a
  668.              distribution mechanism like IP multicast, it is also
  669.              possible for an entity such as a network service provider
  670.              who is not otherwise involved in the session to receive the
  671.              feedback information and act as a third-party monitor to
  672.              diagnose network problems. This feedback function is
  673.              performed by the RTCP sender and receiver reports,
  674.              described below in Section 6.3.
  675.         2.   RTCP carries a persistent transport-level identifier for an
  676.              RTP source called the canonical name or CNAME, Section
  677.              6.4.1. Since the SSRC identifier may change if a conflict
  678.              is discovered or a program is restarted, receivers require
  679.              the CNAME to keep track of each participant. Receivers also
  680.              require the CNAME to associate multiple data streams from a
  681.              given participant in a set of related RTP sessions, for
  682.              example to synchronize audio and video.
  683.         3.   The first two functions require that all participants send
  684.              RTCP packets, therefore the rate must be controlled in
  685.              order for RTP to scale up to a large number of
  686.              participants. By having each participant send its control
  687.              packets to all the others, each can independently observe
  688.              the number of participants. This number is used to
  689.              calculate the rate at which the packets are sent, as
  690.              explained in Section 6.2.
  691.         4.   A fourth, optional function is to convey minimal session
  692.              control information, for example participant identification
  693.              to be displayed in the user interface. This is most likely
  694.              to be useful in "loosely controlled" sessions where
  695.              participants enter and leave without membership control or
  696.              parameter negotiation. RTCP serves as a convenient channel
  697.              to reach all the participants, but it is not necessarily
  698.              expected to support all the control communication
  699.              requirements of an application. A higher-level session
  700.              control protocol, which is beyond the scope of this
  701.              document, may be needed.
  702.    Functions 1-3 are mandatory when RTP is used in the IP multicast
  703.    environment, and are recommended for all environments. RTP
  704.    application designers are advised to avoid mechanisms that can only
  705.    work in unicast mode and will not scale to larger numbers.
  706. Schulzrinne, et al          Standards Track                    [Page 16]
  707. RFC 1889                          RTP                       January 1996
  708. 6.1 RTCP Packet Format
  709.    This specification defines several RTCP packet types to carry a
  710.    variety of control information:
  711.    SR: Sender report, for transmission and reception statistics from
  712.         participants that are active senders
  713.    RR: Receiver report, for reception statistics from participants that
  714.         are not active senders
  715.    SDES: Source description items, including CNAME
  716.    BYE: Indicates end of participation
  717.    APP: Application specific functions
  718.    Each RTCP packet begins with a fixed part similar to that of RTP data
  719.    packets, followed by structured elements that may be of variable
  720.    length according to the packet type but always end on a 32-bit
  721.    boundary. The alignment requirement and a length field in the fixed
  722.    part are included to make RTCP packets "stackable". Multiple RTCP
  723.    packets may be concatenated without any intervening separators to
  724.    form a compound RTCP packet that is sent in a single packet of the
  725.    lower layer protocol, for example UDP. There is no explicit count of
  726.    individual RTCP packets in the compound packet since the lower layer
  727.    protocols are expected to provide an overall length to determine the
  728.    end of the compound packet.
  729.    Each individual RTCP packet in the compound packet may be processed
  730.    independently with no requirements upon the order or combination of
  731.    packets. However, in order to perform the functions of the protocol,
  732.    the following constraints are imposed:
  733.         o Reception statistics (in SR or RR) should be sent as often as
  734.          bandwidth constraints will allow to maximize the resolution of
  735.          the statistics, therefore each periodically transmitted
  736.          compound RTCP packet should include a report packet.
  737.         o New receivers need to receive the CNAME for a source as soon
  738.          as possible to identify the source and to begin associating
  739.          media for purposes such as lip-sync, so each compound RTCP
  740.          packet should also include the SDES CNAME.
  741.         o The number of packet types that may appear first in the
  742.          compound packet should be limited to increase the number of
  743.          constant bits in the first word and the probability of
  744.          successfully validating RTCP packets against misaddressed RTP
  745. Schulzrinne, et al          Standards Track                    [Page 17]
  746. RFC 1889                          RTP                       January 1996
  747.          data packets or other unrelated packets.
  748.    Thus, all RTCP packets must be sent in a compound packet of at least
  749.    two individual packets, with the following format recommended:
  750.    Encryption prefix:  If and only if the compound packet is to be
  751.         encrypted, it is prefixed by a random 32-bit quantity redrawn
  752.         for every compound packet transmitted.
  753.    SR or RR:  The first RTCP packet in the compound packet must always
  754.         be a report packet to facilitate header validation as described
  755.         in Appendix A.2. This is true even if no data has been sent nor
  756.         received, in which case an empty RR is sent, and even if the
  757.         only other RTCP packet in the compound packet is a BYE.
  758.    Additional RRs:  If the number of sources for which reception
  759.         statistics are being reported exceeds 31, the number that will
  760.         fit into one SR or RR packet, then additional RR packets should
  761.         follow the initial report packet.
  762.    SDES:  An SDES packet containing a CNAME item must be included in
  763.         each compound RTCP packet. Other source description items may
  764.         optionally be included if required by a particular application,
  765.         subject to bandwidth constraints (see Section 6.2.2).
  766.    BYE or APP:  Other RTCP packet types, including those yet to be
  767.         defined, may follow in any order, except that BYE should be the
  768.         last packet sent with a given SSRC/CSRC. Packet types may appear
  769.         more than once.
  770.    It is advisable for translators and mixers to combine individual RTCP
  771.    packets from the multiple sources they are forwarding into one
  772.    compound packet whenever feasible in order to amortize the packet
  773.    overhead (see Section 7). An example RTCP compound packet as might be
  774.    produced by a mixer is shown in Fig. 1.  If the overall length of a
  775.    compound packet would exceed the maximum transmission unit (MTU) of
  776.    the network path, it may be segmented into multiple shorter compound
  777.    packets to be transmitted in separate packets of the underlying
  778.    protocol. Note that each of the compound packets must begin with an
  779.    SR or RR packet.
  780.    An implementation may ignore incoming RTCP packets with types unknown
  781.    to it. Additional RTCP packet types may be registered with the
  782.    Internet Assigned Numbers Authority (IANA).
  783. Schulzrinne, et al          Standards Track                    [Page 18]
  784. RFC 1889                          RTP                       January 1996
  785. 6.2 RTCP Transmission Interval
  786.    if encrypted: random 32-bit integer
  787.     |
  788.     |[------- packet -------][----------- packet -----------][-packet-]
  789.     |
  790.     |             receiver reports          chunk        chunk
  791.     V                                    item  item     item  item
  792.    --------------------------------------------------------------------
  793.    |R[SR|# sender #site#site][SDES|# CNAME PHONE |#CNAME LOC][BYE##why]
  794.    |R[  |# report #  1 #  2 ][    |#             |#         ][   ##   ]
  795.    |R[  |#        #    #    ][    |#             |#         ][   ##   ]
  796.    |R[  |#        #    #    ][    |#             |#         ][   ##   ]
  797.    --------------------------------------------------------------------
  798.    |<------------------  UDP packet (compound packet) --------------->|
  799.    #: SSRC/CSRC
  800.               Figure 1: Example of an RTCP compound packet
  801.    RTP is designed to allow an application to scale automatically over
  802.    session sizes ranging from a few participants to thousands. For
  803.    example, in an audio conference the data traffic is inherently self-
  804.    limiting because only one or two people will speak at a time, so with
  805.    multicast distribution the data rate on any given link remains
  806.    relatively constant independent of the number of participants.
  807.    However, the control traffic is not self-limiting. If the reception
  808.    reports from each participant were sent at a constant rate, the
  809.    control traffic would grow linearly with the number of participants.
  810.    Therefore, the rate must be scaled down.
  811.    For each session, it is assumed that the data traffic is subject to
  812.    an aggregate limit called the "session bandwidth" to be divided among
  813.    the participants. This bandwidth might be reserved and the limit
  814.    enforced by the network, or it might just be a reasonable share. The
  815.    session bandwidth may be chosen based or some cost or a priori
  816.    knowledge of the available network bandwidth for the session. It is
  817.    somewhat independent of the media encoding, but the encoding choice
  818.    may be limited by the session bandwidth. The session bandwidth
  819.    parameter is expected to be supplied by a session management
  820.    application when it invokes a media application, but media
  821.    applications may also set a default based on the single-sender data
  822.    bandwidth for the encoding selected for the session. The application
  823.    may also enforce bandwidth limits based on multicast scope rules or
  824.    other criteria.
  825. Schulzrinne, et al          Standards Track                    [Page 19]
  826. RFC 1889                          RTP                       January 1996
  827.    Bandwidth calculations for control and data traffic include lower-
  828.    layer transport and network protocols (e.g., UDP and IP) since that
  829.    is what the resource reservation system would need to know. The
  830.    application can also be expected to know which of these protocols are
  831.    in use. Link level headers are not included in the calculation since
  832.    the packet will be encapsulated with different link level headers as
  833.    it travels.
  834.    The control traffic should be limited to a small and known fraction
  835.    of the session bandwidth: small so that the primary function of the
  836.    transport protocol to carry data is not impaired; known so that the
  837.    control traffic can be included in the bandwidth specification given
  838.    to a resource reservation protocol, and so that each participant can
  839.    independently calculate its share. It is suggested that the fraction
  840.    of the session bandwidth allocated to RTCP be fixed at 5%. While the
  841.    value of this and other constants in the interval calculation is not
  842.    critical, all participants in the session must use the same values so
  843.    the same interval will be calculated. Therefore, these constants
  844.    should be fixed for a particular profile.
  845.    The algorithm described in Appendix A.7 was designed to meet the
  846.    goals outlined above. It calculates the interval between sending
  847.    compound RTCP packets to divide the allowed control traffic bandwidth
  848.    among the participants. This allows an application to provide fast
  849.    response for small sessions where, for example, identification of all
  850.    participants is important, yet automatically adapt to large sessions.
  851.    The algorithm incorporates the following characteristics:
  852.         o Senders are collectively allocated at least 1/4 of the control
  853.          traffic bandwidth so that in sessions with a large number of
  854.          receivers but a small number of senders, newly joining
  855.          participants will more quickly receive the CNAME for the
  856.          sending sites.
  857.         o The calculated interval between RTCP packets is required to be
  858.          greater than a minimum of 5 seconds to avoid having bursts of
  859.          RTCP packets exceed the allowed bandwidth when the number of
  860.          participants is small and the traffic isn't smoothed according
  861.          to the law of large numbers.
  862.         o The interval between RTCP packets is varied randomly over the
  863.          range [0.5,1.5] times the calculated interval to avoid
  864.          unintended synchronization of all participants [10].  The first
  865.          RTCP packet sent after joining a session is also delayed by a
  866.          random variation of half the minimum RTCP interval in case the
  867.          application is started at multiple sites simultaneously, for
  868.          example as initiated by a session announcement.
  869. Schulzrinne, et al          Standards Track                    [Page 20]
  870. RFC 1889                          RTP                       January 1996
  871.         o A dynamic estimate of the average compound RTCP packet size is
  872.          calculated, including all those received and sent, to
  873.          automatically adapt to changes in the amount of control
  874.          information carried.
  875.    This algorithm may be used for sessions in which all participants are
  876.    allowed to send. In that case, the session bandwidth parameter is the
  877.    product of the individual sender's bandwidth times the number of
  878.    participants, and the RTCP bandwidth is 5% of that.
  879. 6.2.1 Maintaining the number of session members
  880.    Calculation of the RTCP packet interval depends upon an estimate of
  881.    the number of sites participating in the session. New sites are added
  882.    to the count when they are heard, and an entry for each is created in
  883.    a table indexed by the SSRC or CSRC identifier (see Section 8.2) to
  884.    keep track of them. New entries may not be considered valid until
  885.    multiple packets carrying the new SSRC have been received (see
  886.    Appendix A.1). Entries may be deleted from the table when an RTCP BYE
  887.    packet with the corresponding SSRC identifier is received.
  888.    A participant may mark another site inactive, or delete it if not yet
  889.    valid, if no RTP or RTCP packet has been received for a small number
  890.    of RTCP report intervals (5 is suggested). This provides some
  891.    robustness against packet loss. All sites must calculate roughly the
  892.    same value for the RTCP report interval in order for this timeout to
  893.    work properly.
  894.    Once a site has been validated, then if it is later marked inactive
  895.    the state for that site should still be retained and the site should
  896.    continue to be counted in the total number of sites sharing RTCP
  897.    bandwidth for a period long enough to span typical network
  898.    partitions.  This is to avoid excessive traffic, when the partition
  899.    heals, due to an RTCP report interval that is too small. A timeout of
  900.    30 minutes is suggested. Note that this is still larger than 5 times
  901.    the largest value to which the RTCP report interval is expected to
  902.    usefully scale, about 2 to 5 minutes.
  903. 6.2.2 Allocation of source description bandwidth
  904.    This specification defines several source description (SDES) items in
  905.    addition to the mandatory CNAME item, such as NAME (personal name)
  906.    and EMAIL (email address). It also provides a means to define new
  907.    application-specific RTCP packet types. Applications should exercise
  908.    caution in allocating control bandwidth to this additional
  909.    information because it will slow down the rate at which reception
  910.    reports and CNAME are sent, thus impairing the performance of the
  911.    protocol. It is recommended that no more than 20% of the RTCP
  912. Schulzrinne, et al          Standards Track                    [Page 21]
  913. RFC 1889                          RTP                       January 1996
  914.    bandwidth allocated to a single participant be used to carry the
  915.    additional information.  Furthermore, it is not intended that all
  916.    SDES items should be included in every application. Those that are
  917.    included should be assigned a fraction of the bandwidth according to
  918.    their utility.  Rather than estimate these fractions dynamically, it
  919.    is recommended that the percentages be translated statically into
  920.    report interval counts based on the typical length of an item.
  921.    For example, an application may be designed to send only CNAME, NAME
  922.    and EMAIL and not any others. NAME might be given much higher
  923.    priority than EMAIL because the NAME would be displayed continuously
  924.    in the application's user interface, whereas EMAIL would be displayed
  925.    only when requested. At every RTCP interval, an RR packet and an SDES
  926.    packet with the CNAME item would be sent. For a small session
  927.    operating at the minimum interval, that would be every 5 seconds on
  928.    the average. Every third interval (15 seconds), one extra item would
  929.    be included in the SDES packet. Seven out of eight times this would
  930.    be the NAME item, and every eighth time (2 minutes) it would be the
  931.    EMAIL item.
  932.    When multiple applications operate in concert using cross-application
  933.    binding through a common CNAME for each participant, for example in a
  934.    multimedia conference composed of an RTP session for each medium, the
  935.    additional SDES information might be sent in only one RTP session.
  936.    The other sessions would carry only the CNAME item.
  937. 6.3 Sender and Receiver Reports
  938.    RTP receivers provide reception quality feedback using RTCP report
  939.    packets which may take one of two forms depending upon whether or not
  940.    the receiver is also a sender. The only difference between the sender
  941.    report (SR) and receiver report (RR) forms, besides the packet type
  942.    code, is that the sender report includes a 20-byte sender information
  943.    section for use by active senders. The SR is issued if a site has
  944.    sent any data packets during the interval since issuing the last
  945.    report or the previous one, otherwise the RR is issued.
  946.    Both the SR and RR forms include zero or more reception report
  947.    blocks, one for each of the synchronization sources from which this
  948.    receiver has received RTP data packets since the last report. Reports
  949.    are not issued for contributing sources listed in the CSRC list. Each
  950.    reception report block provides statistics about the data received
  951.    from the particular source indicated in that block. Since a maximum
  952.    of 31 reception report blocks will fit in an SR or RR packet,
  953.    additional RR packets may be stacked after the initial SR or RR
  954.    packet as needed to contain the reception reports for all sources
  955.    heard during the interval since the last report.
  956. Schulzrinne, et al          Standards Track                    [Page 22]
  957. RFC 1889                          RTP                       January 1996
  958.    The next sections define the formats of the two reports, how they may
  959.    be extended in a profile-specific manner if an application requires
  960.    additional feedback information, and how the reports may be used.
  961.    Details of reception reporting by translators and mixers is given in
  962.    Section 7.
  963. 6.3.1 SR: Sender report RTCP packet
  964.  0                   1                   2                   3
  965.  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  966. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  967. |V=2|P|    RC   |   PT=SR=200   |             length            | header
  968. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  969. |                         SSRC of sender                        |
  970. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  971. |              NTP timestamp, most significant word             | sender
  972. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ info
  973. |             NTP timestamp, least significant word             |
  974. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  975. |                         RTP timestamp                         |
  976. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  977. |                     sender's packet count                     |
  978. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  979. |                      sender's octet count                     |
  980. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  981. |                 SSRC_1 (SSRC of first source)                 | report
  982. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ block
  983. | fraction lost |       cumulative number of packets lost       |   1
  984. -+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  985. |           extended highest sequence number received           |
  986. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  987. |                      interarrival jitter                      |
  988. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  989. |                         last SR (LSR)                         |
  990. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  991. |                   delay since last SR (DLSR)                  |
  992. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  993. |                 SSRC_2 (SSRC of second source)                | report
  994. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ block
  995. :                               ...                             :   2
  996. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  997. |                  profile-specific extensions                  |
  998. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  999.    The sender report packet consists of three sections, possibly
  1000.    followed by a fourth profile-specific extension section if defined.
  1001.    The first section, the header, is 8 octets long. The fields have the
  1002.    following meaning:
  1003. Schulzrinne, et al          Standards Track                    [Page 23]
  1004. RFC 1889                          RTP                       January 1996
  1005.    version (V): 2 bits
  1006.         Identifies the version of RTP, which is the same in RTCP packets
  1007.         as in RTP data packets. The version defined by this
  1008.         specification is two (2).
  1009.    padding (P): 1 bit
  1010.         If the padding bit is set, this RTCP packet contains some
  1011.         additional padding octets at the end which are not part of the
  1012.         control information. The last octet of the padding is a count of
  1013.         how many padding octets should be ignored. Padding may be needed
  1014.         by some encryption algorithms with fixed block sizes. In a
  1015.         compound RTCP packet, padding should only be required on the
  1016.         last individual packet because the compound packet is encrypted
  1017.         as a whole.
  1018.    reception report count (RC): 5 bits
  1019.         The number of reception report blocks contained in this packet.
  1020.         A value of zero is valid.
  1021.    packet type (PT): 8 bits
  1022.         Contains the constant 200 to identify this as an RTCP SR packet.
  1023.    length: 16 bits
  1024.         The length of this RTCP packet in 32-bit words minus one,
  1025.         including the header and any padding. (The offset of one makes
  1026.         zero a valid length and avoids a possible infinite loop in
  1027.         scanning a compound RTCP packet, while counting 32-bit words
  1028.         avoids a validity check for a multiple of 4.)
  1029.    SSRC: 32 bits
  1030.         The synchronization source identifier for the originator of this
  1031.         SR packet.
  1032.    The second section, the sender information, is 20 octets long and is
  1033.    present in every sender report packet. It summarizes the data
  1034.    transmissions from this sender. The fields have the following
  1035.    meaning:
  1036.    NTP timestamp: 64 bits
  1037.         Indicates the wallclock time when this report was sent so that
  1038.         it may be used in combination with timestamps returned in
  1039.         reception reports from other receivers to measure round-trip
  1040.         propagation to those receivers. Receivers should expect that the
  1041.         measurement accuracy of the timestamp may be limited to far less
  1042.         than the resolution of the NTP timestamp. The measurement
  1043.         uncertainty of the timestamp is not indicated as it may not be
  1044.         known. A sender that can keep track of elapsed time but has no
  1045.         notion of wallclock time may use the elapsed time since joining
  1046. Schulzrinne, et al          Standards Track                    [Page 24]
  1047. RFC 1889                          RTP                       January 1996
  1048.         the session instead. This is assumed to be less than 68 years,
  1049.         so the high bit will be zero. It is permissible to use the
  1050.         sampling clock to estimate elapsed wallclock time. A sender that
  1051.         has no notion of wallclock or elapsed time may set the NTP
  1052.         timestamp to zero.
  1053.    RTP timestamp: 32 bits
  1054.         Corresponds to the same time as the NTP timestamp (above), but
  1055.         in the same units and with the same random offset as the RTP
  1056.         timestamps in data packets. This correspondence may be used for
  1057.         intra- and inter-media synchronization for sources whose NTP
  1058.         timestamps are synchronized, and may be used by media-
  1059.         independent receivers to estimate the nominal RTP clock
  1060.         frequency. Note that in most cases this timestamp will not be
  1061.         equal to the RTP timestamp in any adjacent data packet. Rather,
  1062.         it is calculated from the corresponding NTP timestamp using the
  1063.         relationship between the RTP timestamp counter and real time as
  1064.         maintained by periodically checking the wallclock time at a
  1065.         sampling instant.
  1066.    sender's packet count: 32 bits
  1067.         The total number of RTP data packets transmitted by the sender
  1068.         since starting transmission up until the time this SR packet was
  1069.         generated.  The count is reset if the sender changes its SSRC
  1070.         identifier.
  1071.    sender's octet count: 32 bits
  1072.         The total number of payload octets (i.e., not including header
  1073.         or padding) transmitted in RTP data packets by the sender since
  1074.         starting transmission up until the time this SR packet was
  1075.         generated. The count is reset if the sender changes its SSRC
  1076.         identifier. This field can be used to estimate the average
  1077.         payload data rate.
  1078.    The third section contains zero or more reception report blocks
  1079.    depending on the number of other sources heard by this sender since
  1080.    the last report. Each reception report block conveys statistics on
  1081.    the reception of RTP packets from a single synchronization source.
  1082.    Receivers do not carry over statistics when a source changes its SSRC
  1083.    identifier due to a collision. These statistics are:
  1084.    SSRC_n (source identifier): 32 bits
  1085.         The SSRC identifier of the source to which the information in
  1086.         this reception report block pertains.
  1087.    fraction lost: 8 bits
  1088.         The fraction of RTP data packets from source SSRC_n lost since
  1089.         the previous SR or RR packet was sent, expressed as a fixed
  1090. Schulzrinne, et al          Standards Track                    [Page 25]
  1091. RFC 1889                          RTP                       January 1996
  1092.         point number with the binary point at the left edge of the
  1093.         field. (That is equivalent to taking the integer part after
  1094.         multiplying the loss fraction by 256.) This fraction is defined
  1095.         to be the number of packets lost divided by the number of
  1096.         packets expected,  as defined in the next paragraph.  An
  1097.         implementation is shown in Appendix A.3. If the loss is negative
  1098.         due to duplicates, the fraction lost is set to zero. Note that a
  1099.         receiver cannot tell whether any packets were lost after the
  1100.         last one received, and that there will be no reception report
  1101.         block issued for a source if all packets from that source sent
  1102.         during the last reporting interval have been lost.
  1103.    cumulative number of packets lost: 24 bits
  1104.         The total number of RTP data packets from source SSRC_n that
  1105.         have been lost since the beginning of reception. This number is
  1106.         defined to be the number of packets expected less the number of
  1107.         packets actually received, where the number of packets received
  1108.         includes any which are late or duplicates. Thus packets that
  1109.         arrive late are not counted as lost, and the loss may be
  1110.         negative if there are duplicates.  The number of packets
  1111.         expected is defined to be the extended last sequence number
  1112.         received, as defined next, less the initial sequence number
  1113.         received. This may be calculated as shown in Appendix A.3.
  1114.    extended highest sequence number received: 32 bits
  1115.         The low 16 bits contain the highest sequence number received in
  1116.         an RTP data packet from source SSRC_n, and the most significant
  1117.         16 bits extend that sequence number with the corresponding count
  1118.         of sequence number cycles, which may be maintained according to
  1119.         the algorithm in Appendix A.1. Note that different receivers
  1120.         within the same session will generate different extensions to
  1121.         the sequence number if their start times differ significantly.
  1122.    interarrival jitter: 32 bits
  1123.         An estimate of the statistical variance of the RTP data packet
  1124.         interarrival time, measured in timestamp units and expressed as
  1125.         an unsigned integer. The interarrival jitter J is defined to be
  1126.         the mean deviation (smoothed absolute value) of the difference D
  1127.         in packet spacing at the receiver compared to the sender for a
  1128.         pair of packets. As shown in the equation below, this is
  1129.         equivalent to the difference in the "relative transit time" for
  1130.         the two packets; the relative transit time is the difference
  1131.         between a packet's RTP timestamp and the receiver's clock at the
  1132.         time of arrival, measured in the same units.
  1133. Schulzrinne, et al          Standards Track                    [Page 26]
  1134. RFC 1889                          RTP                       January 1996
  1135.    If Si is the RTP timestamp from packet i, and Ri is the time of
  1136.    arrival in RTP timestamp units for packet i, then for two packets i
  1137.    and j, D may be expressed as
  1138.                  D(i,j)=(Rj-Ri)-(Sj-Si)=(Rj-Sj)-(Ri-Si)
  1139.    The interarrival jitter is calculated continuously as each data
  1140.    packet i is received from source SSRC_n, using this difference D for
  1141.    that packet and the previous packet i-1 in order of arrival (not
  1142.    necessarily in sequence), according to the formula
  1143.                     J=J+(|D(i-1,i)|-J)/16
  1144.    Whenever a reception report is issued, the current value of J is
  1145.    sampled.
  1146.    The jitter calculation is prescribed here to allow profile-
  1147.    independent monitors to make valid interpretations of reports coming
  1148.    from different implementations. This algorithm is the optimal first-
  1149.    order estimator and the gain parameter 1/16 gives a good noise
  1150.    reduction ratio while maintaining a reasonable rate of convergence
  1151.    [11].  A sample implementation is shown in Appendix A.8.
  1152.    last SR timestamp (LSR): 32 bits
  1153.         The middle 32 bits out of 64 in the NTP timestamp (as explained
  1154.         in Section 4) received as part of the most recent RTCP sender
  1155.         report (SR) packet from source SSRC_n.  If no SR has been
  1156.         received yet, the field is set to zero.
  1157.    delay since last SR (DLSR): 32 bits
  1158.         The delay, expressed in units of 1/65536 seconds, between
  1159.         receiving the last SR packet from source SSRC_n and sending this
  1160.         reception report block.  If no SR packet has been received yet
  1161.         from SSRC_n, the DLSR field is set to zero.
  1162.    Let SSRC_r denote the receiver issuing this receiver report. Source
  1163.    SSRC_n can compute the round propagation delay to SSRC_r by recording
  1164.    the time A when this reception report block is received.  It
  1165.    calculates the total round-trip time A-LSR using the last SR
  1166.    timestamp (LSR) field, and then subtracting this field to leave the
  1167.    round-trip propagation delay as (A- LSR - DLSR).  This is illustrated
  1168.    in Fig. 2.
  1169.    This may be used as an approximate measure of distance to cluster
  1170.    receivers, although some links have very asymmetric delays.
  1171. Schulzrinne, et al          Standards Track                    [Page 27]
  1172. RFC 1889                          RTP                       January 1996
  1173. 6.3.2 RR: Receiver report RTCP packet
  1174.    [10 Nov 1995 11:33:25.125]           [10 Nov 1995 11:33:36.5]
  1175.    n                 SR(n)              A=b710:8000 (46864.500 s)
  1176.    ---------------------------------------------------------------->
  1177.                       v                 ^
  1178.    ntp_sec =0xb44db705 v               ^ dlsr=0x0005.4000 (    5.250s)
  1179.    ntp_frac=0x20000000  v             ^  lsr =0xb705:2000 (46853.125s)
  1180.      (3024992016.125 s)  v           ^
  1181.    r                      v         ^ RR(n)
  1182.    ---------------------------------------------------------------->
  1183.                           |<-DLSR->|
  1184.                            (5.250 s)
  1185.    A     0xb710:8000 (46864.500 s)
  1186.    DLSR -0x0005:4000 (    5.250 s)
  1187.    LSR  -0xb705:2000 (46853.125 s)
  1188.    -------------------------------
  1189.    delay 0x   6:2000 (    6.125 s)
  1190.            Figure 2: Example for round-trip time computation
  1191.  0                   1                   2                   3
  1192.  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1193. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1194. |V=2|P|    RC   |   PT=RR=201   |             length            | header
  1195. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1196. |                     SSRC of packet sender                     |
  1197. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1198. |                 SSRC_1 (SSRC of first source)                 | report
  1199. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ block
  1200. | fraction lost |       cumulative number of packets lost       |   1
  1201. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1202. |           extended highest sequence number received           |
  1203. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1204. |                      interarrival jitter                      |
  1205. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1206. |                         last SR (LSR)                         |
  1207. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1208. |                   delay since last SR (DLSR)                  |
  1209. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1210. |                 SSRC_2 (SSRC of second source)                | report
  1211. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ block
  1212. :                               ...                             :   2
  1213. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1214. |                  profile-specific extensions                  |
  1215. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1216. Schulzrinne, et al          Standards Track                    [Page 28]
  1217. RFC 1889                          RTP                       January 1996
  1218.    The format of the receiver report (RR) packet is the same as that of
  1219.    the SR packet except that the packet type field contains the constant
  1220.    201 and the five words of sender information are omitted (these are
  1221.    the NTP and RTP timestamps and sender's packet and octet counts). The
  1222.    remaining fields have the same meaning as for the SR packet.
  1223.    An empty RR packet (RC = 0) is put at the head of a compound RTCP
  1224.    packet when there is no data transmission or reception to report.
  1225. 6.3.3 Extending the sender and receiver reports
  1226.    A profile should define profile- or application-specific extensions
  1227.    to the sender report and receiver if there is additional information
  1228.    that should be reported regularly about the sender or receivers. This
  1229.    method should be used in preference to defining another RTCP packet
  1230.    type because it requires less overhead:
  1231.         o fewer octets in the packet (no RTCP header or SSRC field);
  1232.         o simpler and faster parsing because applications running under
  1233.          that profile would be programmed to always expect the extension
  1234.          fields in the directly accessible location after the reception
  1235.          reports.
  1236.    If additional sender information is required, it should be included
  1237.    first in the extension for sender reports, but would not be present
  1238.    in receiver reports. If information about receivers is to be
  1239.    included, that data may be structured as an array of blocks parallel
  1240.    to the existing array of reception report blocks; that is, the number
  1241.    of blocks would be indicated by the RC field.
  1242. 6.3.4 Analyzing sender and receiver reports
  1243.    It is expected that reception quality feedback will be useful not
  1244.    only for the sender but also for other receivers and third-party
  1245.    monitors.  The sender may modify its transmissions based on the
  1246.    feedback; receivers can determine whether problems are local,
  1247.    regional or global; network managers may use profile-independent
  1248.    monitors that receive only the RTCP packets and not the corresponding
  1249.    RTP data packets to evaluate the performance of their networks for
  1250.    multicast distribution.
  1251.    Cumulative counts are used in both the sender information and
  1252.    receiver report blocks so that differences may be calculated between
  1253.    any two reports to make measurements over both short and long time
  1254.    periods, and to provide resilience against the loss of a report. The
  1255.    difference between the last two reports received can be used to
  1256.    estimate the recent quality of the distribution. The NTP timestamp is
  1257. Schulzrinne, et al          Standards Track                    [Page 29]
  1258. RFC 1889                          RTP                       January 1996
  1259.    included so that rates may be calculated from these differences over
  1260.    the interval between two reports. Since that timestamp is independent
  1261.    of the clock rate for the data encoding, it is possible to implement
  1262.    encoding- and profile-independent quality monitors.
  1263.    An example calculation is the packet loss rate over the interval
  1264.    between two reception reports. The difference in the cumulative
  1265.    number of packets lost gives the number lost during that interval.
  1266.    The difference in the extended last sequence numbers received gives
  1267.    the number of packets expected during the interval. The ratio of
  1268.    these two is the packet loss fraction over the interval. This ratio
  1269.    should equal the fraction lost field if the two reports are
  1270.    consecutive, but otherwise not. The loss rate per second can be
  1271.    obtained by dividing the loss fraction by the difference in NTP
  1272.    timestamps, expressed in seconds. The number of packets received is
  1273.    the number of packets expected minus the number lost. The number of
  1274.    packets expected may also be used to judge the statistical validity
  1275.    of any loss estimates.  For example, 1 out of 5 packets lost has a
  1276.    lower significance than 200 out of 1000.
  1277.    From the sender information, a third-party monitor can calculate the
  1278.    average payload data rate and the average packet rate over an
  1279.    interval without receiving the data. Taking the ratio of the two
  1280.    gives the average payload size. If it can be assumed that packet loss
  1281.    is independent of packet size, then the number of packets received by
  1282.    a particular receiver times the average payload size (or the
  1283.    corresponding packet size) gives the apparent throughput available to
  1284.    that receiver.
  1285.    In addition to the cumulative counts which allow long-term packet
  1286.    loss measurements using differences between reports, the fraction
  1287.    lost field provides a short-term measurement from a single report.
  1288.    This becomes more important as the size of a session scales up enough
  1289.    that reception state information might not be kept for all receivers
  1290.    or the interval between reports becomes long enough that only one
  1291.    report might have been received from a particular receiver.
  1292.    The interarrival jitter field provides a second short-term measure of
  1293.    network congestion. Packet loss tracks persistent congestion while
  1294.    the jitter measure tracks transient congestion. The jitter measure
  1295.    may indicate congestion before it leads to packet loss. Since the
  1296.    interarrival jitter field is only a snapshot of the jitter at the
  1297.    time of a report, it may be necessary to analyze a number of reports
  1298.    from one receiver over time or from multiple receivers, e.g., within
  1299.    a single network.
  1300. Schulzrinne, et al          Standards Track                    [Page 30]
  1301. RFC 1889                          RTP                       January 1996
  1302. 6.4 SDES: Source description RTCP packet
  1303.  0                   1                   2                   3
  1304.  0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1305. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1306. |V=2|P|    SC   |  PT=SDES=202  |             length            | header
  1307. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1308. |                          SSRC/CSRC_1                          | chunk
  1309. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+   1
  1310. |                           SDES items                          |
  1311. |                              ...                              |
  1312. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1313. |                          SSRC/CSRC_2                          | chunk
  1314. +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+   2
  1315. |                           SDES items                          |
  1316. |                              ...                              |
  1317. +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1318.    The SDES packet is a three-level structure composed of a header and
  1319.    zero or more chunks, each of of which is composed of items describing
  1320.    the source identified in that chunk. The items are described
  1321.    individually in subsequent sections.
  1322.    version (V), padding (P), length:
  1323.         As described for the SR packet (see Section 6.3.1).
  1324.    packet type (PT): 8 bits
  1325.         Contains the constant 202 to identify this as an RTCP SDES
  1326.         packet.
  1327.    source count (SC): 5 bits
  1328.         The number of SSRC/CSRC chunks contained in this SDES packet. A
  1329.         value of zero is valid but useless.
  1330.    Each chunk consists of an SSRC/CSRC identifier followed by a list of
  1331.    zero or more items, which carry information about the SSRC/CSRC. Each
  1332.    chunk starts on a 32-bit boundary. Each item consists of an 8-bit
  1333.    type field, an 8-bit octet count describing the length of the text
  1334.    (thus, not including this two-octet header), and the text itself.
  1335.    Note that the text can be no longer than 255 octets, but this is
  1336.    consistent with the need to limit RTCP bandwidth consumption.
  1337.    The text is encoded according to the UTF-2 encoding specified in
  1338.    Annex F of ISO standard 10646 [12,13]. This encoding is also known as
  1339.    UTF-8 or UTF-FSS. It is described in "File System Safe UCS
  1340.    Transformation Format (FSS_UTF)", X/Open Preliminary Specification,
  1341.    Document Number P316 and Unicode Technical Report #4. US-ASCII is a
  1342.    subset of this encoding and requires no additional encoding. The
  1343. Schulzrinne, et al          Standards Track                    [Page 31]
  1344. RFC 1889                          RTP                       January 1996
  1345.    presence of multi-octet encodings is indicated by setting the most
  1346.    significant bit of a character to a value of one.
  1347.    Items are contiguous, i.e., items are not individually padded to a
  1348.    32-bit boundary. Text is not null terminated because some multi-octet
  1349.    encodings include null octets. The list of items in each chunk is
  1350.    terminated by one or more null octets, the first of which is
  1351.    interpreted as an item type of zero to denote the end of the list,
  1352.    and the remainder as needed to pad until the next 32-bit boundary. A
  1353.    chunk with zero items (four null octets) is valid but useless.
  1354.    End systems send one SDES packet containing their own source
  1355.    identifier (the same as the SSRC in the fixed RTP header). A mixer
  1356.    sends one SDES packet containing a chunk for each contributing source
  1357.    from which it is receiving SDES information, or multiple complete
  1358.    SDES packets in the format above if there are more than 31 such
  1359.    sources (see Section 7).
  1360.    The SDES items currently defined are described in the next sections.
  1361.    Only the CNAME item is mandatory. Some items shown here may be useful
  1362.    only for particular profiles, but the item types are all assigned
  1363.    from one common space to promote shared use and to simplify profile-
  1364.    independent applications. Additional items may be defined in a
  1365.    profile by registering the type numbers with IANA.
  1366. 6.4.1 CNAME: Canonical end-point identifier SDES item
  1367.     0                   1                   2                   3
  1368.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1369.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1370.    |    CNAME=1    |     length    | user and domain name         ...
  1371.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1372.    The CNAME identifier has the following properties:
  1373.         o Because the randomly allocated SSRC identifier may change if a
  1374.          conflict is discovered or if a program is restarted, the CNAME
  1375.          item is required to provide the binding from the SSRC
  1376.          identifier to an identifier for the source that remains
  1377.          constant.
  1378.         o Like the SSRC identifier, the CNAME identifier should also be
  1379.          unique among all participants within one RTP session.
  1380.         o To provide a binding across multiple media tools used by one
  1381.          participant in a set of related RTP sessions, the CNAME should
  1382.          be fixed for that participant.
  1383. Schulzrinne, et al          Standards Track                    [Page 32]
  1384. RFC 1889                          RTP                       January 1996
  1385.         o To facilitate third-party monitoring, the CNAME should be
  1386.          suitable for either a program or a person to locate the source.
  1387.    Therefore, the CNAME should be derived algorithmically and not
  1388.    entered manually, when possible. To meet these requirements, the
  1389.    following format should be used unless a profile specifies an
  1390.    alternate syntax or semantics. The CNAME item should have the format
  1391.    "user@host", or "host" if a user name is not available as on single-
  1392.    user systems.  For both formats, "host" is either the fully qualified
  1393.    domain name of the host from which the real-time data originates,
  1394.    formatted according to the rules specified in RFC 1034 [14], RFC 1035
  1395.    [15] and Section 2.1 of RFC 1123 [16]; or the standard ASCII
  1396.    representation of the host's numeric address on the interface used
  1397.    for the RTP communication. For example, the standard ASCII
  1398.    representation of an IP Version 4 address is "dotted decimal", also
  1399.    known as dotted quad. Other address types are expected to have ASCII
  1400.    representations that are mutually unique.  The fully qualified domain
  1401.    name is more convenient for a human observer and may avoid the need
  1402.    to send a NAME item in addition, but it may be difficult or
  1403.    impossible to obtain reliably in some operating environments.
  1404.    Applications that may be run in such environments should use the
  1405.    ASCII representation of the address instead.
  1406.    Examples are "doe@sleepy.megacorp.com" or "doe@192.0.2.89" for a
  1407.    multi-user system. On a system with no user name, examples would be
  1408.    "sleepy.megacorp.com" or "192.0.2.89".
  1409.    The user name should be in a form that a program such as "finger" or
  1410.    "talk" could use, i.e., it typically is the login name rather than
  1411.    the personal name. The host name is not necessarily identical to the
  1412.    one in the participant's electronic mail address.
  1413.    This syntax will not provide unique identifiers for each source if an
  1414.    application permits a user to generate multiple sources from one
  1415.    host.  Such an application would have to rely on the SSRC to further
  1416.    identify the source, or the profile for that application would have
  1417.    to specify additional syntax for the CNAME identifier.
  1418.    If each application creates its CNAME independently, the resulting
  1419.    CNAMEs may not be identical as would be required to provide a binding
  1420.    across multiple media tools belonging to one participant in a set of
  1421.    related RTP sessions. If cross-media binding is required, it may be
  1422.    necessary for the CNAME of each tool to be externally configured with
  1423.    the same value by a coordination tool.
  1424.    Application writers should be aware that private network address
  1425.    assignments such as the Net-10 assignment proposed in RFC 1597 [17]
  1426.    may create network addresses that are not globally unique. This would
  1427. Schulzrinne, et al          Standards Track                    [Page 33]
  1428. RFC 1889                          RTP                       January 1996
  1429.    lead to non-unique CNAMEs if hosts with private addresses and no
  1430.    direct IP connectivity to the public Internet have their RTP packets
  1431.    forwarded to the public Internet through an RTP-level translator.
  1432.    (See also RFC 1627 [18].) To handle this case, applications may
  1433.    provide a means to configure a unique CNAME, but the burden is on the
  1434.    translator to translate CNAMEs from private addresses to public
  1435.    addresses if necessary to keep private addresses from being exposed.
  1436. 6.4.2 NAME: User name SDES item
  1437.     0                   1                   2                   3
  1438.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1439.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1440.    |     NAME=2    |     length    | common name of source        ...
  1441.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1442.    This is the real name used to describe the source, e.g., "John Doe,
  1443.    Bit Recycler, Megacorp". It may be in any form desired by the user.
  1444.    For applications such as conferencing, this form of name may be the
  1445.    most desirable for display in participant lists, and therefore might
  1446.    be sent most frequently of those items other than CNAME. Profiles may
  1447.    establish such priorities.  The NAME value is expected to remain
  1448.    constant at least for the duration of a session. It should not be
  1449.    relied upon to be unique among all participants in the session.
  1450. 6.4.3 EMAIL: Electronic mail address SDES item
  1451.     0                   1                   2                   3
  1452.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1453.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1454.    |    EMAIL=3    |     length    | email address of source      ...
  1455.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1456.    The email address is formatted according to RFC 822 [19], for
  1457.    example, "John.Doe@megacorp.com". The EMAIL value is expected to
  1458.    remain constant for the duration of a session.
  1459. 6.4.4 PHONE: Phone number SDES item
  1460.     0                   1                   2                   3
  1461.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1462.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1463.    |    PHONE=4    |     length    | phone number of source       ...
  1464.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1465.    The phone number should be formatted with the plus sign replacing the
  1466.    international access code.  For example, "+1 908 555 1212" for a
  1467.    number in the United States.
  1468. Schulzrinne, et al          Standards Track                    [Page 34]
  1469. RFC 1889                          RTP                       January 1996
  1470. 6.4.5 LOC: Geographic user location SDES item
  1471.     0                   1                   2                   3
  1472.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1473.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1474.    |     LOC=5     |     length    | geographic location of site  ...
  1475.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1476.    Depending on the application, different degrees of detail are
  1477.    appropriate for this item. For conference applications, a string like
  1478.    "Murray Hill, New Jersey" may be sufficient, while, for an active
  1479.    badge system, strings like "Room 2A244, AT&T BL MH" might be
  1480.    appropriate. The degree of detail is left to the implementation
  1481.    and/or user, but format and content may be prescribed by a profile.
  1482.    The LOC value is expected to remain constant for the duration of a
  1483.    session, except for mobile hosts.
  1484. 6.4.6 TOOL: Application or tool name SDES item
  1485.     0                   1                   2                   3
  1486.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1487.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1488.    |     TOOL=6    |     length    | name/version of source appl. ...
  1489.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1490.    A string giving the name and possibly version of the application
  1491.    generating the stream, e.g., "videotool 1.2". This information may be
  1492.    useful for debugging purposes and is similar to the Mailer or Mail-
  1493.    System-Version SMTP headers. The TOOL value is expected to remain
  1494.    constant for the duration of the session.
  1495. 6.4.7 NOTE: Notice/status SDES item
  1496.     0                   1                   2                   3
  1497.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1498.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1499.    |     NOTE=7    |     length    | note about the source        ...
  1500.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1501.    The following semantics are suggested for this item, but these or
  1502.    other semantics may be explicitly defined by a profile. The NOTE item
  1503.    is intended for transient messages describing the current state of
  1504.    the source, e.g., "on the phone, can't talk". Or, during a seminar,
  1505.    this item might be used to convey the title of the talk. It should be
  1506.    used only to carry exceptional information and should not be included
  1507.    routinely by all participants because this would slow down the rate
  1508.    at which reception reports and CNAME are sent, thus impairing the
  1509.    performance of the protocol. In particular, it should not be included
  1510. Schulzrinne, et al          Standards Track                    [Page 35]
  1511. RFC 1889                          RTP                       January 1996
  1512.    as an item in a user's configuration file nor automatically generated
  1513.    as in a quote-of-the-day.
  1514.    Since the NOTE item may be important to display while it is active,
  1515.    the rate at which other non-CNAME items such as NAME are transmitted
  1516.    might be reduced so that the NOTE item can take that part of the RTCP
  1517.    bandwidth. When the transient message becomes inactive, the NOTE item
  1518.    should continue to be transmitted a few times at the same repetition
  1519.    rate but with a string of length zero to signal the receivers.
  1520.    However, receivers should also consider the NOTE item inactive if it
  1521.    is not received for a small multiple of the repetition rate, or
  1522.    perhaps 20-30 RTCP intervals.
  1523. 6.4.8 PRIV: Private extensions SDES item
  1524.       0                   1                   2                   3
  1525.       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1526.      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1527.      |     PRIV=8    |     length    | prefix length | prefix string...
  1528.      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1529.     ...              |                  value string                ...
  1530.      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1531.    This item is used to define experimental or application-specific SDES
  1532.    extensions. The item contains a prefix consisting of a length-string
  1533.    pair, followed by the value string filling the remainder of the item
  1534.    and carrying the desired information. The prefix length field is 8
  1535.    bits long. The prefix string is a name chosen by the person defining
  1536.    the PRIV item to be unique with respect to other PRIV items this
  1537.    application might receive. The application creator might choose to
  1538.    use the application name plus an additional subtype identification if
  1539.    needed.  Alternatively, it is recommended that others choose a name
  1540.    based on the entity they represent, then coordinate the use of the
  1541.    name within that entity.
  1542.    Note that the prefix consumes some space within the item's total
  1543.    length of 255 octets, so the prefix should be kept as short as
  1544.    possible. This facility and the constrained RTCP bandwidth should not
  1545.    be overloaded; it is not intended to satisfy all the control
  1546.    communication requirements of all applications.
  1547.    SDES PRIV prefixes will not be registered by IANA. If some form of
  1548.    the PRIV item proves to be of general utility, it should instead be
  1549.    assigned a regular SDES item type registered with IANA so that no
  1550.    prefix is required. This simplifies use and increases transmission
  1551.    efficiency.
  1552. Schulzrinne, et al          Standards Track                    [Page 36]
  1553. RFC 1889                          RTP                       January 1996
  1554. 6.5 BYE: Goodbye RTCP packet
  1555.     0                   1                   2                   3
  1556.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1557.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1558.    |V=2|P|    SC   |   PT=BYE=203  |             length            |
  1559.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1560.    |                           SSRC/CSRC                           |
  1561.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1562.    :                              ...                              :
  1563.    +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
  1564.    |     length    |               reason for leaving             ... (opt)
  1565.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1566.    The BYE packet indicates that one or more sources are no longer
  1567.    active.
  1568.    version (V), padding (P), length:
  1569.         As described for the SR packet (see Section 6.3.1).
  1570.    packet type (PT): 8 bits
  1571.         Contains the constant 203 to identify this as an RTCP BYE
  1572.         packet.
  1573.    source count (SC): 5 bits
  1574.         The number of SSRC/CSRC identifiers included in this BYE packet.
  1575.         A count value of zero is valid, but useless.
  1576.    If a BYE packet is received by a mixer, the mixer forwards the BYE
  1577.    packet with the SSRC/CSRC identifier(s) unchanged. If a mixer shuts
  1578.    down, it should send a BYE packet listing all contributing sources it
  1579.    handles, as well as its own SSRC identifier. Optionally, the BYE
  1580.    packet may include an 8-bit octet count followed by that many octets
  1581.    of text indicating the reason for leaving, e.g., "camera malfunction"
  1582.    or "RTP loop detected". The string has the same encoding as that
  1583.    described for SDES. If the string fills the packet to the next 32-bit
  1584.    boundary, the string is not null terminated. If not, the BYE packet
  1585.    is padded with null octets.
  1586. Schulzrinne, et al          Standards Track                    [Page 37]
  1587. RFC 1889                          RTP                       January 1996
  1588. 6.6 APP: Application-defined RTCP packet
  1589.     0                   1                   2                   3
  1590.     0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
  1591.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1592.    |V=2|P| subtype |   PT=APP=204  |             length            |
  1593.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1594.    |                           SSRC/CSRC                           |
  1595.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1596.    |                          name (ASCII)                         |
  1597.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1598.    |                   application-dependent data                 ...
  1599.    +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
  1600.    The APP packet is intended for experimental use as new applications
  1601.    and new features are developed, without requiring packet type value
  1602.    registration. APP packets with unrecognized names should be ignored.
  1603.    After testing and if wider use is justified, it is recommended that
  1604.    each APP packet be redefined without the subtype and name fields and
  1605.    registered with the Internet Assigned Numbers Authority using an RTCP
  1606.    packet type.
  1607.    version (V), padding (P), length:
  1608.         As described for the SR packet (see Section 6.3.1).