annotate src/libvorbis-1.3.3/doc/rfc5215.xml @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents 05aa0afa9217
children
rev   line source
Chris@1 1 <?xml version="1.0" encoding="US-ASCII" ?>
Chris@1 2 <!DOCTYPE rfc SYSTEM "rfc2629.dtd">
Chris@1 3
Chris@1 4 <?rfc rfcedstyle="yes"?>
Chris@1 5 <?rfc subcompact="no"?>
Chris@1 6 <?rfc toc="yes"?>
Chris@1 7 <?rfc symrefs="yes" ?>
Chris@1 8 <?rfc sortrefs="yes" ?>
Chris@1 9
Chris@1 10 <rfc number="5215" category="std">
Chris@1 11
Chris@1 12 <front>
Chris@1 13 <title abbrev="Vorbis RTP Payload Format">RTP Payload Format for Vorbis Encoded Audio</title>
Chris@1 14
Chris@1 15 <author initials="L" surname="Barbato" fullname="Luca Barbato">
Chris@1 16 <organization abbrev="Xiph">Xiph.Org Foundation</organization>
Chris@1 17 <address>
Chris@1 18 <email>lu_zero@gentoo.org</email>
Chris@1 19 <uri>http://xiph.org/</uri>
Chris@1 20 </address>
Chris@1 21 </author>
Chris@1 22
Chris@1 23 <date month="August" year="2008" />
Chris@1 24
Chris@1 25 <area>General</area>
Chris@1 26 <workgroup>AVT Working Group</workgroup>
Chris@1 27 <keyword>I-D</keyword>
Chris@1 28
Chris@1 29 <keyword>Internet-Draft</keyword>
Chris@1 30 <keyword>Vorbis</keyword>
Chris@1 31 <keyword>RTP</keyword>
Chris@1 32
Chris@1 33 <keyword>example</keyword>
Chris@1 34
Chris@1 35 <abstract>
Chris@1 36
Chris@1 37 <t>
Chris@1 38 This document describes an RTP payload format for transporting Vorbis encoded
Chris@1 39 audio. It details the RTP encapsulation mechanism for raw Vorbis data and
Chris@1 40 the delivery mechanisms for the decoder probability model (referred to
Chris@1 41 as a codebook), as well as other setup information.
Chris@1 42 </t>
Chris@1 43
Chris@1 44 <t>
Chris@1 45 Also included within this memo are media type registrations and the details
Chris@1 46 necessary for the use of Vorbis with the Session Description Protocol (SDP).
Chris@1 47 </t>
Chris@1 48
Chris@1 49 </abstract>
Chris@1 50
Chris@1 51 </front>
Chris@1 52
Chris@1 53 <middle>
Chris@1 54
Chris@1 55 <section anchor="Introduction" title="Introduction">
Chris@1 56
Chris@1 57 <t>
Chris@1 58 Vorbis is a general purpose perceptual audio codec intended to allow
Chris@1 59 maximum encoder flexibility, thus allowing it to scale competitively
Chris@1 60 over an exceptionally wide range of bit rates. At the high
Chris@1 61 quality/bitrate end of the scale (CD or DAT rate stereo, 16/24 bits), it
Chris@1 62 is in the same league as MPEG-4 AAC.
Chris@1 63 Vorbis is also intended for lower and higher sample rates (from
Chris@1 64 8kHz telephony to 192kHz digital masters) and a range of channel
Chris@1 65 representations (monaural, polyphonic, stereo, quadraphonic, 5.1,
Chris@1 66 ambisonic, or up to 255 discrete channels).
Chris@1 67 </t>
Chris@1 68
Chris@1 69 <t>
Chris@1 70 Vorbis encoded audio is generally encapsulated within an Ogg format bitstream
Chris@1 71 <xref target="RFC3533"></xref>, which provides framing and synchronization.
Chris@1 72 For the purposes of RTP transport, this layer is unnecessary, and so raw Vorbis
Chris@1 73 packets are used in the payload.
Chris@1 74 </t>
Chris@1 75
Chris@1 76 <section anchor="Terminology" title="Conformance and Document Conventions">
Chris@1 77
Chris@1 78 <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14, <xref target="RFC2119"/> and indicate requirement levels for compliant implementations. Requirements apply to all implementations unless otherwise stated.</t>
Chris@1 79 <t>An implementation is a software module that supports one of the media types defined in this document. Software modules may support multiple media types, but conformance is considered individually for each type.</t>
Chris@1 80 <t>Implementations that fail to satisfy one or more "MUST" requirements are considered non-compliant. Implementations that satisfy all "MUST" requirements, but fail to satisfy one or more "SHOULD" requirements, are said to be "conditionally compliant". All other implementations are "unconditionally compliant".</t>
Chris@1 81
Chris@1 82 </section>
Chris@1 83 </section>
Chris@1 84
Chris@1 85 <section anchor="Payload Format" title="Payload Format">
Chris@1 86
Chris@1 87 <t>
Chris@1 88 For RTP-based transport of Vorbis-encoded audio, the standard RTP header is
Chris@1 89 followed by a 4-octet payload header, and then the payload data. The payload
Chris@1 90 headers are used to associate the Vorbis data with its associated decoding
Chris@1 91 codebooks as well as indicate if the following packet contains fragmented
Chris@1 92 Vorbis data and/or the number of whole Vorbis data frames. The payload data
Chris@1 93 contains the raw Vorbis bitstream information. There are 3 types of Vorbis
Chris@1 94 data; an RTP payload MUST contain just one of them at a time.
Chris@1 95 </t>
Chris@1 96
Chris@1 97 <section anchor="RTP Header" title="RTP Header">
Chris@1 98
Chris@1 99 <t>
Chris@1 100 The format of the RTP header is specified in <xref target="RFC3550"></xref>
Chris@1 101 and shown in <xref target="RTP Header Figure"/>. This payload format
Chris@1 102 uses the fields of the header in a manner consistent with that specification.
Chris@1 103 </t>
Chris@1 104
Chris@1 105 <t>
Chris@1 106 <figure anchor="RTP Header Figure" title="RTP Header">
Chris@1 107 <artwork><![CDATA[
Chris@1 108 0 1 2 3
Chris@1 109 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
Chris@1 110 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 111 |V=2|P|X| CC |M| PT | sequence number |
Chris@1 112 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 113 | timestamp |
Chris@1 114 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 115 | synchronization source (SSRC) identifier |
Chris@1 116 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 117 | contributing source (CSRC) identifiers |
Chris@1 118 | ... |
Chris@1 119 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 120 ]]></artwork>
Chris@1 121 </figure>
Chris@1 122 </t>
Chris@1 123
Chris@1 124 <t>
Chris@1 125 The RTP header begins with an octet of fields (V, P, X, and CC) to support
Chris@1 126 specialized RTP uses (see <xref target="RFC3550"></xref> and
Chris@1 127 <xref target="RFC3551"></xref> for details). For Vorbis RTP, the following
Chris@1 128 values are used.
Chris@1 129 </t>
Chris@1 130
Chris@1 131 <t>
Chris@1 132 Version (V): 2 bits</t>
Chris@1 133 <t>
Chris@1 134 This field identifies the version of RTP. The version used by this
Chris@1 135 specification is two (2).
Chris@1 136 </t>
Chris@1 137
Chris@1 138 <t>
Chris@1 139 Padding (P): 1 bit</t>
Chris@1 140 <t>
Chris@1 141 Padding MAY be used with this payload format according to Section 5.1 of
Chris@1 142 <xref target="RFC3550"></xref>.
Chris@1 143 </t>
Chris@1 144
Chris@1 145 <t>
Chris@1 146 Extension (X): 1 bit</t>
Chris@1 147 <t>
Chris@1 148 The Extension bit is used in accordance with <xref target="RFC3550"></xref>.
Chris@1 149 </t>
Chris@1 150
Chris@1 151 <t>
Chris@1 152 CSRC count (CC): 4 bits</t>
Chris@1 153 <t>
Chris@1 154 The CSRC count is used in accordance with <xref target="RFC3550"></xref>.
Chris@1 155 </t>
Chris@1 156
Chris@1 157 <t>
Chris@1 158 Marker (M): 1 bit</t>
Chris@1 159 <t>
Chris@1 160 Set to zero. Audio silence suppression is not used. This conforms to Section 4.1
Chris@1 161 of <xref target="VORBIS-SPEC-REF"></xref>.
Chris@1 162 </t>
Chris@1 163
Chris@1 164 <t>
Chris@1 165 Payload Type (PT): 7 bits</t>
Chris@1 166 <t>
Chris@1 167 An RTP profile for a class of applications is expected to assign a payload type
Chris@1 168 for this format, or a dynamically allocated payload type SHOULD be chosen that
Chris@1 169 designates the payload as Vorbis.
Chris@1 170 </t>
Chris@1 171
Chris@1 172 <t>
Chris@1 173 Sequence number: 16 bits</t>
Chris@1 174 <t>
Chris@1 175 The sequence number increments by one for each RTP data packet sent, and may be
Chris@1 176 used by the receiver to detect packet loss and to restore the packet sequence. This
Chris@1 177 field is detailed further in <xref target="RFC3550"></xref>.
Chris@1 178 </t>
Chris@1 179
Chris@1 180 <t>
Chris@1 181 Timestamp: 32 bits</t>
Chris@1 182 <t>
Chris@1 183 A timestamp representing the sampling time of the first sample of the first
Chris@1 184 Vorbis packet in the RTP payload. The clock frequency MUST be set to the sample
Chris@1 185 rate of the encoded audio data and is conveyed out-of-band (e.g., as an SDP parameter).
Chris@1 186 </t>
Chris@1 187
Chris@1 188 <t>
Chris@1 189 SSRC/CSRC identifiers: </t>
Chris@1 190 <t>
Chris@1 191 These two fields, 32 bits each with one SSRC field and a maximum of 16 CSRC
Chris@1 192 fields, are as defined in <xref target="RFC3550">
Chris@1 193 </xref>.
Chris@1 194 </t>
Chris@1 195
Chris@1 196 </section>
Chris@1 197
Chris@1 198 <section anchor="Payload Header" title="Payload Header">
Chris@1 199
Chris@1 200 <t>
Chris@1 201 The 4 octets following the RTP Header section are the Payload Header. This
Chris@1 202 header is split into a number of bit fields detailing the format of the
Chris@1 203 following payload data packets.
Chris@1 204 </t>
Chris@1 205
Chris@1 206 <figure anchor="Payload Header Figure" title="Payload Header">
Chris@1 207 <artwork><![CDATA[
Chris@1 208 0 1 2 3
Chris@1 209 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
Chris@1 210 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 211 | Ident | F |VDT|# pkts.|
Chris@1 212 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 213 ]]></artwork>
Chris@1 214 </figure>
Chris@1 215
Chris@1 216 <t>
Chris@1 217 Ident: 24 bits</t>
Chris@1 218 <t>
Chris@1 219 This 24-bit field is used to associate the Vorbis data to a decoding
Chris@1 220 Configuration. It is stored as a network byte order integer.
Chris@1 221 </t>
Chris@1 222
Chris@1 223 <t>
Chris@1 224 Fragment type (F): 2 bits</t>
Chris@1 225 <t>
Chris@1 226 This field is set according to the following list:
Chris@1 227 </t>
Chris@1 228 <vspace blankLines="1" />
Chris@1 229 <list style="empty">
Chris@1 230 <t> 0 = Not Fragmented</t>
Chris@1 231 <t> 1 = Start Fragment</t>
Chris@1 232 <t> 2 = Continuation Fragment</t>
Chris@1 233 <t> 3 = End Fragment</t>
Chris@1 234 </list>
Chris@1 235
Chris@1 236 <t>
Chris@1 237 Vorbis Data Type (VDT): 2 bits</t>
Chris@1 238 <t>
Chris@1 239 This field specifies the kind of Vorbis data stored in this RTP packet. There
Chris@1 240 are currently three different types of Vorbis payloads. Each packet MUST contain only a single type of Vorbis packet (e.g., you must not aggregate configuration and comment packets in the same RTP payload).
Chris@1 241 </t>
Chris@1 242
Chris@1 243 <vspace blankLines="1" />
Chris@1 244 <list style="empty">
Chris@1 245 <t> 0 = Raw Vorbis payload</t>
Chris@1 246 <t> 1 = Vorbis Packed Configuration payload</t>
Chris@1 247 <t> 2 = Legacy Vorbis Comment payload</t>
Chris@1 248 <t> 3 = Reserved</t>
Chris@1 249 </list>
Chris@1 250
Chris@1 251 <t> The packets with a VDT of value 3 MUST be ignored.</t>
Chris@1 252
Chris@1 253 <t>
Chris@1 254 The last 4 bits represent the number of complete packets in this payload. This
Chris@1 255 provides for a maximum number of 15 Vorbis packets in the payload. If the
Chris@1 256 payload contains fragmented data, the number of packets MUST be set to 0.
Chris@1 257 </t>
Chris@1 258
Chris@1 259 </section>
Chris@1 260
Chris@1 261 <section anchor="Payload Data" title="Payload Data">
Chris@1 262
Chris@1 263 <t>
Chris@1 264 Raw Vorbis packets are currently unbounded in length; application profiles will
Chris@1 265 likely define a practical limit. Typical Vorbis packet sizes range from very
Chris@1 266 small (2-3 bytes) to quite large (8-12 kilobytes). The reference implementation
Chris@1 267 <xref target="LIBVORBIS"></xref> typically produces packets less than ~800
Chris@1 268 bytes, except for the setup header packets, which are ~4-12 kilobytes. Within an
Chris@1 269 RTP context, to avoid fragmentation, the Vorbis data packet size SHOULD be kept
Chris@1 270 sufficiently small so that after adding the RTP and payload headers, the
Chris@1 271 complete RTP packet is smaller than the path MTU.
Chris@1 272 </t>
Chris@1 273
Chris@1 274 <figure anchor="Payload Data Figure" title="Payload Data Header">
Chris@1 275 <artwork><![CDATA[
Chris@1 276 0 1 2 3
Chris@1 277 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
Chris@1 278 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 279 | length | vorbis packet data ..
Chris@1 280 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 281 ]]></artwork>
Chris@1 282 </figure>
Chris@1 283
Chris@1 284 <t>
Chris@1 285 Each Vorbis payload packet starts with a two octet length header, which is used
Chris@1 286 to represent the size in bytes of the following data payload, and is followed by the
Chris@1 287 raw Vorbis data padded to the nearest byte boundary, as explained by the <xref target="VORBIS-SPEC-REF">Vorbis I Specification</xref>. The length value is stored
Chris@1 288 as a network byte order integer.
Chris@1 289 </t>
Chris@1 290
Chris@1 291 <t>
Chris@1 292 For payloads that consist of multiple Vorbis packets, the payload data consists
Chris@1 293 of the packet length followed by the packet data for each of the Vorbis packets
Chris@1 294 in the payload.
Chris@1 295 </t>
Chris@1 296
Chris@1 297 <t>
Chris@1 298 The Vorbis packet length header is the length of the Vorbis data block only and
Chris@1 299 does not include the length field.
Chris@1 300 </t>
Chris@1 301
Chris@1 302 <t>
Chris@1 303 The payload packing of the Vorbis data packets MUST follow the guidelines
Chris@1 304 set out in <xref target="RFC3551"></xref>, where the oldest Vorbis packet occurs
Chris@1 305 immediately after the RTP packet header. Subsequent Vorbis packets, if any, MUST
Chris@1 306 follow in temporal order.
Chris@1 307 </t>
Chris@1 308
Chris@1 309 <t>
Chris@1 310 Audio channel mapping is in accordance with the
Chris@1 311 <xref target="VORBIS-SPEC-REF">Vorbis I Specification</xref>.
Chris@1 312 </t>
Chris@1 313
Chris@1 314 </section>
Chris@1 315
Chris@1 316 <section anchor="Example RTP Packet" title="Example RTP Packet">
Chris@1 317
Chris@1 318 <t>
Chris@1 319 Here is an example RTP payload containing two Vorbis packets.
Chris@1 320 </t>
Chris@1 321
Chris@1 322 <figure anchor="Example Raw Vorbis Packet" title="Example Raw Vorbis Packet">
Chris@1 323 <artwork><![CDATA[
Chris@1 324 0 1 2 3
Chris@1 325 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
Chris@1 326 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 327 | 2 |0|0| 0 |0| PT | sequence number |
Chris@1 328 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 329 | timestamp (in sample rate units) |
Chris@1 330 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 331 | synchronisation source (SSRC) identifier |
Chris@1 332 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 333 | contributing source (CSRC) identifiers |
Chris@1 334 | ... |
Chris@1 335 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 336 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 337 | Ident | 0 | 0 | 2 pks |
Chris@1 338 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 339 | length | vorbis data ..
Chris@1 340 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 341 .. vorbis data |
Chris@1 342 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 343 | length | next vorbis packet data ..
Chris@1 344 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 345 .. vorbis data ..
Chris@1 346 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 347 .. vorbis data |
Chris@1 348 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 349 ]]></artwork>
Chris@1 350 </figure>
Chris@1 351
Chris@1 352 <t>
Chris@1 353 The payload data section of the RTP packet begins with the 24-bit Ident field
Chris@1 354 followed by the one octet bit field header, which has the number of Vorbis
Chris@1 355 frames set to 2. Each of the Vorbis data frames is prefixed by the two octets
Chris@1 356 length field. The Packet Type and Fragment Type are set to 0. The Configuration
Chris@1 357 that will be used to decode the packets is the one indexed by the ident value.
Chris@1 358 </t>
Chris@1 359
Chris@1 360 </section>
Chris@1 361 </section>
Chris@1 362
Chris@1 363
Chris@1 364
Chris@1 365 <section anchor="Configuration Headers" title="Configuration Headers">
Chris@1 366
Chris@1 367 <t>
Chris@1 368 Unlike other mainstream audio codecs, Vorbis has no statically
Chris@1 369 configured probability model. Instead, it packs all entropy decoding
Chris@1 370 configuration, Vector Quantization and Huffman models into a data block
Chris@1 371 that must be transmitted to the decoder with the compressed data.
Chris@1 372 A decoder also requires information detailing the number of audio
Chris@1 373 channels, bitrates, and similar information to configure itself for a
Chris@1 374 particular compressed data stream. These two blocks of information are
Chris@1 375 often referred to collectively as the "codebooks" for a Vorbis stream,
Chris@1 376 and are included as special "header" packets at the start
Chris@1 377 of the compressed data. In addition,
Chris@1 378 the <xref target="VORBIS-SPEC-REF">Vorbis I specification</xref>
Chris@1 379 requires the presence of a comment header packet that gives simple
Chris@1 380 metadata about the stream, but this information is not required for
Chris@1 381 decoding the frame sequence.
Chris@1 382 </t>
Chris@1 383
Chris@1 384 <t>
Chris@1 385 Thus, these two codebook header packets must be received by the decoder before
Chris@1 386 any audio data can be interpreted. These requirements pose problems in RTP,
Chris@1 387 which is often used over unreliable transports.
Chris@1 388 </t>
Chris@1 389
Chris@1 390 <t>
Chris@1 391 Since this information must be transmitted reliably and, as the RTP
Chris@1 392 stream may change certain configuration data mid-session, there are
Chris@1 393 different methods for delivering this configuration data to a
Chris@1 394 client, both in-band and out-of-band, which are detailed below.
Chris@1 395 In order to set up an initial state for the client application, the
Chris@1 396 configuration MUST be conveyed via the signalling channel used to set up
Chris@1 397 the session. One example of such signalling is
Chris@1 398 <xref target="RFC4566">SDP</xref> with the
Chris@1 399 <xref target="RFC3264">Offer/Answer Model</xref>.
Chris@1 400 Changes to the configuration MAY be communicated via a re-invite,
Chris@1 401 conveying a new SDP, or sent in-band in the RTP channel.
Chris@1 402 Implementations MUST support an in-band delivery of updated codebooks,
Chris@1 403 and SHOULD support out-of-band codebook update using a new SDP file.
Chris@1 404 The changes may be due to different codebooks as well as
Chris@1 405 different bitrates of the RTP stream.
Chris@1 406 </t>
Chris@1 407
Chris@1 408 <t>For non-chained streams, the recommended Configuration delivery
Chris@1 409 method is inside the <xref target="Packed Configuration">Packed
Chris@1 410 Configuration</xref> in the SDP as explained the <xref
Chris@1 411 target="Mapping Media Type Parameters into SDP"> Mapping Media Type
Chris@1 412 Parameters into SDP</xref>.
Chris@1 413 </t>
Chris@1 414
Chris@1 415 <t>
Chris@1 416 The 24-bit Ident field is used to map which Configuration will be used to
Chris@1 417 decode a packet. When the Ident field changes, it indicates that a change in
Chris@1 418 the stream has taken place. The client application MUST have in advance the
Chris@1 419 correct configuration. If the client detects a change in the Ident value and
Chris@1 420 does not have this information, it MUST NOT decode the raw associated Vorbis
Chris@1 421 data until it fetches the correct Configuration.
Chris@1 422 </t>
Chris@1 423
Chris@1 424 <section anchor="In-band Header Transmission" title="In-band Header Transmission">
Chris@1 425
Chris@1 426 <t>
Chris@1 427 The <xref target="Packed Configuration">Packed Configuration</xref> Payload is
Chris@1 428 sent in-band with the packet type bits set to match the Vorbis Data Type.
Chris@1 429 Clients MUST be capable of dealing with fragmentation and periodic
Chris@1 430 <xref target="RFC4588">re-transmission of</xref> the configuration headers.
Chris@1 431 The RTP timestamp value MUST reflect the transmission time of the first data packet for which this configuration applies.
Chris@1 432 </t>
Chris@1 433
Chris@1 434 <section anchor="Packed Configuration" title="Packed Configuration">
Chris@1 435
Chris@1 436 <t>
Chris@1 437 A Vorbis Packed Configuration is indicated with the Vorbis Data Type field set
Chris@1 438 to 1. Of the three headers defined in the
Chris@1 439 <xref target="VORBIS-SPEC-REF">Vorbis I specification</xref>, the
Chris@1 440 Identification and the Setup MUST be packed as they are, while the Comment
Chris@1 441 header MAY be replaced with a dummy one.</t>
Chris@1 442 <t>
Chris@1 443 The packed configuration stores Xiph codec
Chris@1 444 configurations in a generic way: the first field stores the number of the following packets
Chris@1 445 minus one (count field), the next ones represent the size of the headers
Chris@1 446 (length fields), and the headers immediately follow the list of length fields.
Chris@1 447 The size of the last header is implicit.</t>
Chris@1 448 <t>
Chris@1 449 The count and the length fields are encoded using the following logic: the data
Chris@1 450 is in network byte order; every byte has the most significant bit used
Chris@1 451 as a flag, and the following 7 bits are used to store the value.
Chris@1 452 The first 7 most significant bits are stored in the first byte.
Chris@1 453 If there are remaining bits, the flag bit is set to 1 and the subsequent
Chris@1 454 7 bits are stored in the following byte.
Chris@1 455 If there are remaining bits, set the flag to 1 and the same procedure is
Chris@1 456 repeated.
Chris@1 457 The ending byte has the flag bit set to 0. To decode, simply iterate
Chris@1 458 over the bytes until the flag bit is set to 0. For every byte, the data
Chris@1 459 is added to the accumulated value multiplied by 128.</t>
Chris@1 460 <t>
Chris@1 461 The headers are packed in the same order as they are present in Ogg <xref target="VORBIS-SPEC-REF" />:
Chris@1 462 Identification, Comment, Setup.</t>
Chris@1 463
Chris@1 464 <t>
Chris@1 465 The 2 byte length tag defines the length of the packed headers as the sum of
Chris@1 466 the Configuration, Comment, and Setup lengths.</t>
Chris@1 467
Chris@1 468 <figure anchor="Packed Configuration Figure" title="Packed Configuration Figure">
Chris@1 469 <artwork><![CDATA[
Chris@1 470 0 1 2 3
Chris@1 471 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
Chris@1 472 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 473 |V=2|P|X| CC |M| PT | xxxx |
Chris@1 474 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 475 | xxxxx |
Chris@1 476 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 477 | synchronization source (SSRC) identifier |
Chris@1 478 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 479 | contributing source (CSRC) identifiers |
Chris@1 480 | ... |
Chris@1 481 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 482 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 483 | Ident | 0 | 1 | 1|
Chris@1 484 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 485 | length | n. of headers | length1 |
Chris@1 486 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 487 | length2 | Identification ..
Chris@1 488 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 489 .. Identification ..
Chris@1 490 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 491 .. Identification ..
Chris@1 492 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 493 .. Identification ..
Chris@1 494 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 495 .. Identification | Comment ..
Chris@1 496 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 497 .. Comment ..
Chris@1 498 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 499 .. Comment ..
Chris@1 500 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 501 .. Comment ..
Chris@1 502 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 503 .. Comment | Setup ..
Chris@1 504 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 505 .. Setup ..
Chris@1 506 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 507 .. Setup ..
Chris@1 508 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 509 ]]></artwork>
Chris@1 510 </figure>
Chris@1 511
Chris@1 512 <t>The Ident field is set with the value that will be used by the Raw Payload
Chris@1 513 Packets to address this Configuration. The Fragment type is set to 0 because the
Chris@1 514 packet bears the full Packed configuration. The number of the packet is set to 1.</t>
Chris@1 515 </section>
Chris@1 516 </section>
Chris@1 517
Chris@1 518 <section anchor="Out of Band Transmission" title="Out of Band Transmission">
Chris@1 519
Chris@1 520 <t>
Chris@1 521 The following packet definition MUST be used when Configuration is inside
Chris@1 522 in the SDP.
Chris@1 523 </t>
Chris@1 524
Chris@1 525 <section anchor="Packed Headers" title="Packed Headers">
Chris@1 526
Chris@1 527 <t>
Chris@1 528 As mentioned above, the RECOMMENDED delivery vector for Vorbis configuration
Chris@1 529 data is via a retrieval method that can be performed using a reliable transport
Chris@1 530 protocol. As the RTP headers are not required for this method of delivery, the
Chris@1 531 structure of the configuration data is slightly different. The packed header
Chris@1 532 starts with a 32-bit (network-byte ordered) count field, which details
Chris@1 533 the number of packed headers that are contained in the bundle. The
Chris@1 534 following shows the Packed header
Chris@1 535 payload for each chained Vorbis stream.
Chris@1 536 </t>
Chris@1 537
Chris@1 538 <figure anchor="Packed Headers Overview Figure" title="Packed Headers Overview">
Chris@1 539 <artwork><![CDATA[
Chris@1 540 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 541 | Number of packed headers |
Chris@1 542 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 543 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 544 | Packed header |
Chris@1 545 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 546 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 547 | Packed header |
Chris@1 548 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 549 ]]></artwork>
Chris@1 550 </figure>
Chris@1 551
Chris@1 552 <figure anchor="Packed Headers Detail Figure" title="Packed Headers Detail">
Chris@1 553 <artwork><![CDATA[
Chris@1 554 0 1 2 3
Chris@1 555 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
Chris@1 556 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 557 | Ident | length ..
Chris@1 558 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 559 .. | n. of headers | length1 | length2 ..
Chris@1 560 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 561 .. | Identification Header ..
Chris@1 562 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 563 .................................................................
Chris@1 564 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 565 .. | Comment Header ..
Chris@1 566 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 567 .................................................................
Chris@1 568 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 569 .. Comment Header |
Chris@1 570 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 571 | Setup Header ..
Chris@1 572 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 573 .................................................................
Chris@1 574 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 575 .. Setup Header |
Chris@1 576 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 577 ]]></artwork>
Chris@1 578 </figure>
Chris@1 579 <t>
Chris@1 580 The key difference between the in-band format and this one is that there is no
Chris@1 581 need for the payload header octet. In this figure, the comment has a size bigger
Chris@1 582 than 127 bytes.
Chris@1 583 </t>
Chris@1 584 </section>
Chris@1 585
Chris@1 586 </section>
Chris@1 587
Chris@1 588 <section anchor="Loss of Configuration Headers" title="Loss of Configuration Headers">
Chris@1 589
Chris@1 590 <t>
Chris@1 591 Unlike the loss of raw Vorbis payload data, loss of a configuration header
Chris@1 592 leads to a situation where it will not be possible to successfully decode the
Chris@1 593 stream. Implementations MAY try to recover from an error by requesting again the
Chris@1 594 missing Configuration or, if the delivery method is in-band, by buffering the
Chris@1 595 payloads waiting for the Configuration needed to decode them.
Chris@1 596 The baseline reaction SHOULD either be reset or end the RTP session.
Chris@1 597 </t>
Chris@1 598
Chris@1 599 </section>
Chris@1 600
Chris@1 601 </section>
Chris@1 602
Chris@1 603 <section anchor="Comment Headers" title="Comment Headers">
Chris@1 604
Chris@1 605 <t>
Chris@1 606 Vorbis Data Type flag set to 2 indicates that the packet contains
Chris@1 607 the comment metadata, such as artist name, track title, and so on. These
Chris@1 608 metadata messages are not intended to be fully descriptive but rather to offer basic
Chris@1 609 track/song information. Clients MAY ignore it completely. The details on the
Chris@1 610 format of the comments can be found in the <xref target="VORBIS-SPEC-REF">Vorbis I Specification</xref>.
Chris@1 611 </t>
Chris@1 612 <figure anchor="Comment Packet Figure" title="Comment Packet">
Chris@1 613 <artwork><![CDATA[
Chris@1 614 0 1 2 3
Chris@1 615 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
Chris@1 616 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 617 |V=2|P|X| CC |M| PT | xxxx |
Chris@1 618 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 619 | xxxxx |
Chris@1 620 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 621 | synchronization source (SSRC) identifier |
Chris@1 622 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 623 | contributing source (CSRC) identifiers |
Chris@1 624 | ... |
Chris@1 625 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 626 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 627 | Ident | 0 | 2 | 1|
Chris@1 628 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 629 | length | Comment ..
Chris@1 630 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 631 .. Comment ..
Chris@1 632 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 633 .. Comment |
Chris@1 634 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 635 ]]></artwork>
Chris@1 636 </figure>
Chris@1 637
Chris@1 638 <t>
Chris@1 639 The 2-byte length field is necessary since this packet could be fragmented.
Chris@1 640 </t>
Chris@1 641
Chris@1 642 </section>
Chris@1 643 <section anchor="Frame Packetization" title="Frame Packetization">
Chris@1 644
Chris@1 645 <t>
Chris@1 646 Each RTP payload contains either one Vorbis packet fragment or an integer
Chris@1 647 number of complete Vorbis packets (up to a maximum of 15 packets, since the
Chris@1 648 number of packets is defined by a 4-bit value).
Chris@1 649 </t>
Chris@1 650
Chris@1 651 <t>
Chris@1 652 Any Vorbis data packet that is less than path MTU SHOULD be bundled in the RTP
Chris@1 653 payload with as many Vorbis packets as will fit, up to a maximum of 15, except
Chris@1 654 when such bundling would exceed an application's desired transmission latency.
Chris@1 655 Path MTU is detailed in <xref target="RFC1191"></xref> and <xref target="RFC1981"></xref>.
Chris@1 656 </t>
Chris@1 657
Chris@1 658 <t>
Chris@1 659 A fragmented packet has a zero in the last four bits of the payload header.
Chris@1 660 The first fragment will set the Fragment type to 1. Each fragment after the
Chris@1 661 first will set the Fragment type to 2 in the payload header. The consecutive
Chris@1 662 fragments MUST be sent without any other payload being sent between the first
Chris@1 663 and the last fragment. The RTP payload containing the last fragment of the
Chris@1 664 Vorbis packet will have the Fragment type set to 3. To maintain the correct
Chris@1 665 sequence for fragmented packet reception, the timestamp field of fragmented
Chris@1 666 packets MUST be the same as the first packet sent, with the sequence number
Chris@1 667 incremented as normal for the subsequent RTP payloads; this will affect the
Chris@1 668 RTCP jitter measurement. The length field shows the fragment length.
Chris@1 669 </t>
Chris@1 670
Chris@1 671 <section anchor="Example Fragmented Vorbis Packet" title="Example Fragmented Vorbis Packet">
Chris@1 672
Chris@1 673 <t>
Chris@1 674 Here is an example of a fragmented Vorbis packet split over three RTP payloads.
Chris@1 675 Each of them contains the standard RTP headers as well as the 4-octet Vorbis
Chris@1 676 headers.
Chris@1 677 </t>
Chris@1 678
Chris@1 679 <figure anchor="Example Fragmented Packet (Packet 1)" title="Example Fragmented Packet (Packet 1)">
Chris@1 680 <artwork><![CDATA[
Chris@1 681 Packet 1:
Chris@1 682
Chris@1 683 0 1 2 3
Chris@1 684 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
Chris@1 685 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 686 |V=2|P|X| CC |M| PT | 1000 |
Chris@1 687 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 688 | 12345 |
Chris@1 689 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 690 | synchronization source (SSRC) identifier |
Chris@1 691 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 692 | contributing source (CSRC) identifiers |
Chris@1 693 | ... |
Chris@1 694 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 695 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 696 | Ident | 1 | 0 | 0|
Chris@1 697 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 698 | length | vorbis data ..
Chris@1 699 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 700 .. vorbis data |
Chris@1 701 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 702 ]]></artwork>
Chris@1 703 </figure>
Chris@1 704
Chris@1 705 <t>
Chris@1 706 In this payload, the initial sequence number is 1000 and the timestamp is 12345. The Fragment type is set to 1, the number of packets field is set to 0, and as
Chris@1 707 the payload is raw Vorbis data, the VDT field is set to 0.
Chris@1 708 </t>
Chris@1 709
Chris@1 710 <figure anchor="Example Fragmented Packet (Packet 2)" title="Example Fragmented Packet (Packet 2)">
Chris@1 711 <artwork><![CDATA[
Chris@1 712 Packet 2:
Chris@1 713
Chris@1 714 0 1 2 3
Chris@1 715 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
Chris@1 716 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 717 |V=2|P|X| CC |M| PT | 1001 |
Chris@1 718 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 719 | 12345 |
Chris@1 720 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 721 | synchronization source (SSRC) identifier |
Chris@1 722 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 723 | contributing source (CSRC) identifiers |
Chris@1 724 | ... |
Chris@1 725 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 726 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 727 | Ident | 2 | 0 | 0|
Chris@1 728 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 729 | length | vorbis data ..
Chris@1 730 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 731 .. vorbis data |
Chris@1 732 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 733 ]]></artwork>
Chris@1 734 </figure>
Chris@1 735
Chris@1 736 <t>
Chris@1 737 The Fragment type field is set to 2, and the number of packets field is set to 0.
Chris@1 738 For large Vorbis fragments, there can be several of these types of payloads.
Chris@1 739 The maximum packet size SHOULD be no greater than the path MTU,
Chris@1 740 including all RTP and payload headers. The sequence number has been incremented
Chris@1 741 by one, but the timestamp field remains the same as the initial payload.
Chris@1 742 </t>
Chris@1 743
Chris@1 744 <figure anchor="Example Fragmented Packet (Packet 3)" title="Example Fragmented Packet (Packet 3)">
Chris@1 745 <artwork><![CDATA[
Chris@1 746 Packet 3:
Chris@1 747
Chris@1 748 0 1 2 3
Chris@1 749 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
Chris@1 750 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 751 |V=2|P|X| CC |M| PT | 1002 |
Chris@1 752 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 753 | 12345 |
Chris@1 754 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 755 | synchronization source (SSRC) identifier |
Chris@1 756 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
Chris@1 757 | contributing source (CSRC) identifiers |
Chris@1 758 | ... |
Chris@1 759 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 760 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 761 | Ident | 3 | 0 | 0|
Chris@1 762 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 763 | length | vorbis data ..
Chris@1 764 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 765 .. vorbis data |
Chris@1 766 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Chris@1 767 ]]></artwork>
Chris@1 768 </figure>
Chris@1 769
Chris@1 770 <t>
Chris@1 771 This is the last Vorbis fragment payload. The Fragment type is set to 3 and the
Chris@1 772 packet count remains set to 0. As in the previous payloads, the timestamp remains
Chris@1 773 set to the first payload timestamp in the sequence and the sequence number has
Chris@1 774 been incremented.
Chris@1 775 </t>
Chris@1 776 </section>
Chris@1 777
Chris@1 778 <section anchor="Packet Loss" title="Packet Loss">
Chris@1 779
Chris@1 780 <t>
Chris@1 781 As there is no error correction within the Vorbis stream, packet loss will
Chris@1 782 result in a loss of signal. Packet loss is more of an issue for fragmented
Chris@1 783 Vorbis packets as the client will have to cope with the handling of the
Chris@1 784 Fragment Type. In case of loss of fragments, the client MUST discard all the
Chris@1 785 remaining Vorbis fragments and decode the incomplete packet. If we use the
Chris@1 786 fragmented Vorbis packet example above and the first RTP payload is lost, the
Chris@1 787 client MUST detect that the next RTP payload has the packet count field set
Chris@1 788 to 0 and the Fragment type 2 and MUST drop it.
Chris@1 789 The next RTP payload, which is the final fragmented packet, MUST be dropped
Chris@1 790 in the same manner.
Chris@1 791 If the missing RTP payload is the last, the two fragments received will be
Chris@1 792 kept and the incomplete Vorbis packet decoded.
Chris@1 793 </t>
Chris@1 794
Chris@1 795 <t>
Chris@1 796 Loss of any of the Configuration fragment will result in the loss of the full
Chris@1 797 Configuration packet with the result detailed in the <xref target="Loss of Configuration Headers">Loss of Configuration Headers</xref> section.
Chris@1 798 </t>
Chris@1 799
Chris@1 800 </section>
Chris@1 801 </section>
Chris@1 802 <section anchor="IANA Considerations" title="IANA Considerations">
Chris@1 803
Chris@1 804 <list style="hanging">
Chris@1 805 <t hangText="Type name:"> audio </t>
Chris@1 806
Chris@1 807 <t hangText="Subtype name:"> vorbis </t>
Chris@1 808
Chris@1 809 <t hangText="Required parameters:">
Chris@1 810
Chris@1 811 <list style="hanging">
Chris@1 812 <t hangText="rate:"> indicates the RTP timestamp clock rate as described in <xref target="RFC3551">RTP Profile for Audio and Video Conferences with Minimal Control</xref>.
Chris@1 813 </t>
Chris@1 814
Chris@1 815 <t hangText="channels:"> indicates the number of audio channels as described in <xref target="RFC3551">RTP Profile for Audio and Video Conferences with Minimal Control</xref>.
Chris@1 816 </t>
Chris@1 817
Chris@1 818
Chris@1 819 <t hangText="configuration:"> the <xref target="RFC4648">base64</xref> representation of the <xref target="Packed Headers">Packed Headers</xref>.
Chris@1 820 </t>
Chris@1 821 </list>
Chris@1 822 </t>
Chris@1 823
Chris@1 824 <t hangText="Encoding considerations:">
Chris@1 825 <vspace blankLines="1" />
Chris@1 826 This media type is framed and contains binary data.
Chris@1 827 </t>
Chris@1 828
Chris@1 829 <t hangText="Security considerations:">
Chris@1 830 <vspace blankLines="1" />
Chris@1 831 See Section 10 of RFC 5215.</t>
Chris@1 832
Chris@1 833 <t hangText="Interoperability considerations:">
Chris@1 834 <vspace blankLines="1" />
Chris@1 835 None</t>
Chris@1 836
Chris@1 837 <t hangText="Published specification:">
Chris@1 838 <vspace blankLines="1" />
Chris@1 839 RFC 5215
Chris@1 840 <vspace blankLines="1" />
Chris@1 841 Ogg Vorbis I specification: Codec setup and packet decode. Available from the Xiph website, http://xiph.org/
Chris@1 842 </t>
Chris@1 843
Chris@1 844
Chris@1 845 <t hangText="Applications which use this media type:">
Chris@1 846 <vspace blankLines="1"/>
Chris@1 847 Audio streaming and conferencing tools </t>
Chris@1 848
Chris@1 849 <t hangText="Additional information:">
Chris@1 850 <vspace blankLines="1" />
Chris@1 851 None </t>
Chris@1 852
Chris@1 853 <t hangText="Person &amp; email address to contact for further information:">
Chris@1 854 <vspace blankLines="1" />
Chris@1 855 Luca Barbato: &lt;lu_zero@gentoo.org&gt;<br/>
Chris@1 856 <vspace blankLines="0" />
Chris@1 857 IETF Audio/Video Transport Working Group
Chris@1 858
Chris@1 859 </t>
Chris@1 860
Chris@1 861 <t hangText="Intended usage:">
Chris@1 862 <vspace blankLines="1" />
Chris@1 863 COMMON</t>
Chris@1 864
Chris@1 865 <t hangText="Restriction on usage:">
Chris@1 866 <vspace blankLines="1" />
Chris@1 867 This media type depends on RTP framing, hence is only defined for transfer via <xref target="RFC3550">RTP</xref>.</t>
Chris@1 868
Chris@1 869 <t hangText="Author:">
Chris@1 870 <vspace blankLines="1"/>Luca Barbato</t>
Chris@1 871
Chris@1 872 <t hangText="Change controller:">
Chris@1 873 <vspace blankLines="1"/>IETF AVT Working Group delegated from the IESG</t>
Chris@1 874 </list>
Chris@1 875
Chris@1 876 <section anchor="Packed Headers IANA Considerations" title="Packed Headers IANA Considerations">
Chris@1 877
Chris@1 878 <t>
Chris@1 879 The following IANA considerations refers to the split configuration <xref target="Packed Headers">Packed Headers</xref> used within RFC 5215.
Chris@1 880 </t>
Chris@1 881
Chris@1 882 <list style="hanging">
Chris@1 883 <t hangText="Type name:"> audio </t>
Chris@1 884
Chris@1 885 <t hangText="Subtype name:"> vorbis-config </t>
Chris@1 886
Chris@1 887 <t hangText="Required parameters:">
Chris@1 888 <vspace blankLines="1" />
Chris@1 889 None
Chris@1 890 </t>
Chris@1 891
Chris@1 892 <t hangText="Optional parameters:">
Chris@1 893 <vspace blankLines="1" />
Chris@1 894 None
Chris@1 895 </t>
Chris@1 896
Chris@1 897 <t hangText="Encoding considerations:">
Chris@1 898 <vspace blankLines="1" />
Chris@1 899 This media type contains binary data.
Chris@1 900 </t>
Chris@1 901
Chris@1 902 <t hangText="Security considerations:">
Chris@1 903 <vspace blankLines="1" />
Chris@1 904 See Section 10 of RFC 5215.
Chris@1 905 </t>
Chris@1 906
Chris@1 907 <t hangText="Interoperability considerations:">
Chris@1 908 <vspace blankLines="1" />
Chris@1 909 None
Chris@1 910 </t>
Chris@1 911
Chris@1 912 <t hangText="Published specification:">
Chris@1 913 <vspace blankLines="1" />
Chris@1 914 RFC 5215
Chris@1 915 </t>
Chris@1 916
Chris@1 917 <t hangText="Applications which use this media type:">
Chris@1 918 <vspace blankLines="1" />
Chris@1 919 Vorbis encoded audio, configuration data
Chris@1 920 </t>
Chris@1 921
Chris@1 922 <t hangText="Additional information:">
Chris@1 923 <vspace blankLines="1" />
Chris@1 924 None
Chris@1 925 </t>
Chris@1 926
Chris@1 927 <t hangText="Person &amp; email address to contact for further information:">
Chris@1 928 <vspace blankLines="1" />
Chris@1 929 Luca Barbato: &lt;lu_zero@gentoo.org&gt;
Chris@1 930 <vspace blankLines="0" />
Chris@1 931 IETF Audio/Video Transport Working Group
Chris@1 932 </t>
Chris@1 933
Chris@1 934 <t hangText="Intended usage:">
Chris@1 935 COMMON
Chris@1 936 </t>
Chris@1 937
Chris@1 938 <t hangText="Restriction on usage:">
Chris@1 939 <vspace blankLines="1" />
Chris@1 940 This media type doesn't depend on the transport.
Chris@1 941 </t>
Chris@1 942
Chris@1 943 <t hangText="Author:">
Chris@1 944 <vspace blankLines="1" />
Chris@1 945 Luca Barbato</t>
Chris@1 946
Chris@1 947 <t hangText="Change controller:">
Chris@1 948 <vspace blankLines="1" />
Chris@1 949 IETF AVT Working Group delegated from the IESG</t>
Chris@1 950 </list>
Chris@1 951
Chris@1 952 </section>
Chris@1 953
Chris@1 954 </section>
Chris@1 955
Chris@1 956 <section anchor="SDP related considerations" title="SDP Related Considerations">
Chris@1 957 <t>
Chris@1 958 The following paragraphs define the mapping of the parameters described in the IANA considerations section and their usage in the <xref target="RFC3264">Offer/Answer Model</xref>. In order to be forward compatible, the implementation MUST ignore unknown parameters.
Chris@1 959 </t>
Chris@1 960
Chris@1 961 <section anchor="Mapping Media Type Parameters into SDP" title="Mapping Media Type Parameters into SDP">
Chris@1 962
Chris@1 963 <t>
Chris@1 964 The information carried in the Media Type specification has a
Chris@1 965 specific mapping to fields in the <xref target="RFC4566">Session Description
Chris@1 966 Protocol (SDP)</xref>, which is commonly used to describe RTP sessions.
Chris@1 967 When SDP is used to specify sessions, the mapping are as follows:
Chris@1 968 </t>
Chris@1 969
Chris@1 970 <list style="symbols">
Chris@1 971
Chris@1 972 <t>The type name ("audio") goes in SDP "m=" as the media name.</t>
Chris@1 973
Chris@1 974 <t>The subtype name ("vorbis") goes in SDP "a=rtpmap" as the encoding name.</t>
Chris@1 975
Chris@1 976 <t>The parameter "rate" also goes in "a=rtpmap" as the clock rate.</t>
Chris@1 977
Chris@1 978 <t>The parameter "channels" also goes in "a=rtpmap" as the channel count.</t>
Chris@1 979
Chris@1 980 <t>The mandated parameters "configuration" MUST be included in the SDP
Chris@1 981 "a=fmtp" attribute.</t>
Chris@1 982
Chris@1 983 </list>
Chris@1 984
Chris@1 985 <t>
Chris@1 986 If the stream comprises chained Vorbis files and all of them are known in
Chris@1 987 advance, the Configuration Packet for each file SHOULD be passed to the client
Chris@1 988 using the configuration attribute.
Chris@1 989 </t>
Chris@1 990
Chris@1 991 <t>
Chris@1 992 The port value is specified by the server application bound to the address
Chris@1 993 specified in the c= line. The channel count value specified in the rtpmap
Chris@1 994 attribute SHOULD match the current Vorbis stream or should be considered the maximum
Chris@1 995 number of channels to be expected. The timestamp clock rate MUST be a multiple
Chris@1 996 of the sample rate; a different payload number MUST be used if the clock rate
Chris@1 997 changes. The Configuration payload delivers the exact information, thus the
Chris@1 998 SDP information SHOULD be considered a hint.
Chris@1 999 An example is found below.
Chris@1 1000 </t>
Chris@1 1001
Chris@1 1002 <section anchor="SDP Example" title="SDP Example">
Chris@1 1003 <t>The following example shows a basic SDP single stream. The first
Chris@1 1004 configuration packet is inside the SDP; other configurations could be
Chris@1 1005 fetched at any time from the URIs provided. The following
Chris@1 1006 <xref target="RFC4648">base64</xref> configuration string is folded in this
Chris@1 1007 example due to RFC line length limitations.</t>
Chris@1 1008
Chris@1 1009
Chris@1 1010 <list style="empty">
Chris@1 1011 <t>c=IN IP4 192.0.2.1</t>
Chris@1 1012 <t>m=audio RTP/AVP 98</t>
Chris@1 1013 <t>a=rtpmap:98 vorbis/44100/2</t>
Chris@1 1014 <t>a=fmtp:98 configuration=AAAAAZ2f4g9NAh4aAXZvcmJpcwA...;</t>
Chris@1 1015 </list>
Chris@1 1016 </section>
Chris@1 1017
Chris@1 1018 <t>
Chris@1 1019 Note that the payload format (encoding) names are commonly shown in uppercase.
Chris@1 1020 Media Type subtypes are commonly shown in lowercase. These names are
Chris@1 1021 case-insensitive in both places. Similarly, parameter names are
Chris@1 1022 case-insensitive both in Media Type types and in the default mapping to the SDP
Chris@1 1023 a=fmtp attribute. The a=fmtp line is a single line, even if it is shown as multiple lines in this document for clarity.
Chris@1 1024 </t>
Chris@1 1025
Chris@1 1026 </section>
Chris@1 1027
Chris@1 1028 <section anchor="Usage with the SDP Offer/Answer Mode" title="Usage with the SDP Offer/Answer Model">
Chris@1 1029
Chris@1 1030 <t>
Chris@1 1031 There are no negotiable parameters. All of them are declarative.
Chris@1 1032 </t>
Chris@1 1033
Chris@1 1034 </section>
Chris@1 1035
Chris@1 1036 </section>
Chris@1 1037 <section anchor="Congestion Control" title="Congestion Control">
Chris@1 1038 <t>
Chris@1 1039 The general congestion control considerations for transporting RTP
Chris@1 1040 data apply to Vorbis audio over RTP as well. See the RTP specification
Chris@1 1041 <xref target="RFC3550" /> and any applicable RTP profile (e.g., <xref target="RFC3551" />).
Chris@1 1042 Audio data can be encoded using a range of different bit rates, so
Chris@1 1043 it is possible to adapt network bandwidth by adjusting the encoder
Chris@1 1044 bit rate in real time or by having multiple copies of content encoded
Chris@1 1045 at different bit rates.
Chris@1 1046 </t>
Chris@1 1047 </section>
Chris@1 1048 <section anchor="Example" title="Example">
Chris@1 1049
Chris@1 1050 <t>
Chris@1 1051 The following example shows a common usage pattern that MAY be applied in
Chris@1 1052 such a situation. The main scope of this section is to explain better usage
Chris@1 1053 of the transmission vectors.
Chris@1 1054 </t>
Chris@1 1055
Chris@1 1056 <section anchor="Stream Radio" title="Stream Radio">
Chris@1 1057
Chris@1 1058 <t>This is one of the most common situations: there is one single server streaming
Chris@1 1059 content in multicast, and the clients may start a session at a random time. The
Chris@1 1060 content itself could be a mix of a live stream (as the webjockey's voice)
Chris@1 1061 and stored streams (as the music she plays).</t>
Chris@1 1062
Chris@1 1063 <t>In this situation, we don't know in advance how many codebooks we will use.
Chris@1 1064 The clients can join anytime and users expect to start listening to the content
Chris@1 1065 in a short time.</t>
Chris@1 1066
Chris@1 1067 <t>Upon joining, the client will receive the current Configuration necessary to
Chris@1 1068 decode the current stream inside the SDP so that the decoding will start
Chris@1 1069 immediately after.</t>
Chris@1 1070
Chris@1 1071 <t>When the streamed content changes, the new Configuration is sent in-band
Chris@1 1072 before the actual stream, and the Configuration that has to be sent inside
Chris@1 1073 the SDP is updated. Since the in-band method is unreliable, an out-of-band
Chris@1 1074 fallback is provided.</t>
Chris@1 1075
Chris@1 1076 <t>The client may choose to fetch the Configuration from the alternate source
Chris@1 1077 as soon as it discovers a Configuration packet got lost in-band, or use
Chris@1 1078 <xref target="RFC3611">selective retransmission</xref> if the server supports
Chris@1 1079 this feature.</t>
Chris@1 1080
Chris@1 1081 <t>A server-side optimization would be to keep a hash list of the
Chris@1 1082 Configurations per session, which avoids packing all of them and sending the same
Chris@1 1083 Configuration with different Ident tags.</t>
Chris@1 1084
Chris@1 1085 <t>A client-side optimization would be to keep a tag list of the Configurations
Chris@1 1086 per session and not process configuration packets that are already known.</t>
Chris@1 1087
Chris@1 1088 </section>
Chris@1 1089 </section>
Chris@1 1090
Chris@1 1091 <section anchor="Security Considerations" title="Security Considerations">
Chris@1 1092 <t>
Chris@1 1093 RTP packets using this payload format are subject to the security
Chris@1 1094 considerations discussed in the
Chris@1 1095 <xref target="RFC3550">RTP specification</xref>, the
Chris@1 1096 <xref target="RFC4648">base64 specification</xref>, and the
Chris@1 1097 <xref target="RFC3986">URI Generic syntax specification</xref>.
Chris@1 1098 Among other considerations, this implies that the confidentiality of the
Chris@1 1099 media stream is achieved by using encryption. Because the data compression used
Chris@1 1100 with this payload format is applied end-to-end, encryption may be performed on
Chris@1 1101 the compressed data.
Chris@1 1102 </t>
Chris@1 1103
Chris@1 1104 </section>
Chris@1 1105 <section title="Copying Conditions">
Chris@1 1106 <t>The authors agree to grant third parties the irrevocable right to copy,
Chris@1 1107 use, and distribute the work, with or without modification, in any medium,
Chris@1 1108 without royalty, provided that, unless separate permission is granted,
Chris@1 1109 redistributed modified works do not contain misleading author, version,
Chris@1 1110 name of work, or endorsement information.</t>
Chris@1 1111 </section>
Chris@1 1112 <section anchor="Acknowledgments" title="Acknowledgments">
Chris@1 1113
Chris@1 1114 <t>
Chris@1 1115 This document is a continuation of the following documents:
Chris@1 1116 </t><t>
Chris@1 1117 Moffitt, J., "RTP Payload Format for Vorbis Encoded Audio", February 2001.
Chris@1 1118 </t><t>
Chris@1 1119 Kerr, R., "RTP Payload Format for Vorbis Encoded Audio", December 2004.
Chris@1 1120 </t><t>
Chris@1 1121 The Media Type declaration is a continuation of the following
Chris@1 1122 document:</t><t>
Chris@1 1123 Short, B., "The audio/rtp-vorbis MIME Type", January 2008.
Chris@1 1124 </t>
Chris@1 1125
Chris@1 1126 <t>
Chris@1 1127 Thanks to the AVT, Vorbis Communities / Xiph.Org Foundation including Steve Casner,
Chris@1 1128 Aaron Colwell, Ross Finlayson, Fluendo, Ramon Garcia, Pascal Hennequin, Ralph
Chris@1 1129 Giles, Tor-Einar Jarnbjo, Colin Law, John Lazzaro, Jack Moffitt, Christopher
Chris@1 1130 Montgomery, Colin Perkins, Barry Short, Mike Smith, Phil Kerr, Michael Sparks,
Chris@1 1131 Magnus Westerlund, David Barrett, Silvia Pfeiffer, Stefan Ehmann, Gianni Ceccarelli and Alessandro Salvatori. Thanks to the LScube Group, in particular Federico
Chris@1 1132 Ridolfo, Francesco Varano, Giampaolo Mancini, Dario Gallucci, and Juan Carlos De Martin.
Chris@1 1133 </t>
Chris@1 1134
Chris@1 1135 </section>
Chris@1 1136
Chris@1 1137 </middle>
Chris@1 1138
Chris@1 1139 <back>
Chris@1 1140
Chris@1 1141 <references title="Normative References">
Chris@1 1142
Chris@1 1143 <?rfc include="reference.RFC.2119" ?>
Chris@1 1144 <?rfc include="reference.RFC.3550" ?>
Chris@1 1145 <?rfc include="reference.RFC.3551" ?>
Chris@1 1146 <?rfc include="reference.RFC.3986" ?>
Chris@1 1147 <?rfc include="reference.RFC.4566" ?>
Chris@1 1148 <?rfc include="reference.RFC.1191" ?>
Chris@1 1149 <?rfc include="reference.RFC.1981" ?>
Chris@1 1150 <?rfc include="reference.RFC.3264" ?>
Chris@1 1151 <?rfc include="reference.RFC.4648" ?>
Chris@1 1152
Chris@1 1153 <reference anchor="VORBIS-SPEC-REF">
Chris@1 1154 <front>
Chris@1 1155 <title>Ogg Vorbis I specification: Codec setup and packet decode. Available from the Xiph website, http://xiph.org/vorbis/doc/Vorbis_I_spec.html</title>
Chris@1 1156 </front>
Chris@1 1157 </reference>
Chris@1 1158
Chris@1 1159 </references>
Chris@1 1160
Chris@1 1161 <references title="Informative References">
Chris@1 1162
Chris@1 1163 <?rfc include="reference.RFC.3533" ?>
Chris@1 1164
Chris@1 1165 <reference anchor="LIBVORBIS">
Chris@1 1166 <front>
Chris@1 1167 <title>libvorbis: Available from the dedicated website, http://vorbis.com/</title>
Chris@1 1168 </front>
Chris@1 1169 </reference>
Chris@1 1170
Chris@1 1171 <?rfc include="reference.RFC.3611" ?>
Chris@1 1172 <?rfc include="reference.RFC.4588" ?>
Chris@1 1173
Chris@1 1174 </references>
Chris@1 1175 </back>
Chris@1 1176 </rfc>