1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
|
<pre>Internet Engineering Task Force (IETF) J. Spittka
Request for Comments: 7587
Category: Standards Track K. Vos
ISSN: 2070-1721 vocTone
JM. Valin
Mozilla
June 2015
<span class="h1">RTP Payload Format for the Opus Speech and Audio Codec</span>
Abstract
This document defines the Real-time Transport Protocol (RTP) payload
format for packetization of Opus-encoded speech and audio data
necessary to integrate the codec in the most compatible way. It also
provides an applicability statement for the use of Opus over RTP.
Further, it describes media type registrations for the RTP payload
format.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7587">http://www.rfc-editor.org/info/rfc7587</a>.
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Spittka, et al. Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-2">2</a>
2. Conventions, Definitions, and Acronyms Used in This Document 3
<a href="#section-3">3</a>. Opus Codec . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.1">3.1</a>. Network Bandwidth . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.1.1">3.1.1</a>. Recommended Bitrate . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.1.2">3.1.2</a>. Variable versus Constant Bitrate . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-3.1.3">3.1.3</a>. Discontinuous Transmission (DTX) . . . . . . . . . . <a href="#page-5">5</a>
<a href="#section-3.2">3.2</a>. Complexity . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.3">3.3</a>. Forward Error Correction (FEC) . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-3.4">3.4</a>. Stereo Operation . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-4">4</a>. Opus RTP Payload Format . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.1">4.1</a>. RTP Header Usage . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-4.2">4.2</a>. Payload Structure . . . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-5">5</a>. Congestion Control . . . . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-6">6</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-6.1">6.1</a>. Opus Media Type Registration . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-7">7</a>. SDP Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-7.1">7.1</a>. SDP Offer/Answer Considerations . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-7.2">7.2</a>. Declarative SDP Considerations for Opus . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-8">8</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-9">9</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9.1">9.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-9.2">9.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-18">18</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
Opus [<a href="./rfc6716" title=""Definition of the Opus Audio Codec"">RFC6716</a>] is a speech and audio codec developed within the IETF
Internet Wideband Audio Codec working group. The codec has a very
low algorithmic delay, and it is highly scalable in terms of audio
bandwidth, bitrate, and complexity. Further, it provides different
modes to efficiently encode speech signals as well as music signals,
thus making it the codec of choice for various applications using the
Internet or similar networks.
This document defines the Real-time Transport Protocol (RTP)
[<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] payload format for packetization of Opus-encoded speech and
audio data necessary to integrate Opus in the most compatible way.
It also provides an applicability statement for the use of Opus over
RTP. Further, it describes media type registrations for the RTP
payload format.
<span class="grey">Spittka, et al. Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Conventions, Definitions, and Acronyms Used in This Document</span>
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 [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
audio bandwidth: The range of audio frequencies being coded
CBR: Constant bitrate
CPU: Central Processing Unit
DTX: Discontinuous Transmission
FEC: Forward Error Correction
IP: Internet Protocol
samples: Speech or audio samples (per channel)
SDP: Session Description Protocol
SSRC: Synchronization source
VBR: Variable bitrate
Throughout this document, we refer to the following definitions:
+--------------+----------------+-----------------+-----------------+
| Abbreviation | Name | Audio Bandwidth | Sampling Rate |
| | | (Hz) | (Hz) |
+--------------+----------------+-----------------+-----------------+
| NB | Narrowband | 0 - 4000 | 8000 |
| | | | |
| MB | Mediumband | 0 - 6000 | 12000 |
| | | | |
| WB | Wideband | 0 - 8000 | 16000 |
| | | | |
| SWB | Super-wideband | 0 - 12000 | 24000 |
| | | | |
| FB | Fullband | 0 - 20000 | 48000 |
+--------------+----------------+-----------------+-----------------+
Table 1: Audio Bandwidth Naming
<span class="grey">Spittka, et al. Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Opus Codec</span>
Opus encodes speech signals as well as general audio signals. Two
different modes can be chosen, a voice mode or an audio mode, to
allow the most efficient coding depending on the type of the input
signal, the sampling frequency of the input signal, and the intended
application.
The voice mode allows efficient encoding of voice signals at lower
bitrates while the audio mode is optimized for general audio signals
at medium and higher bitrates.
Opus is highly scalable in terms of audio bandwidth, bitrate, and
complexity. Further, Opus allows transmitting stereo signals with
in-band signaling in the bitstream.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Network Bandwidth</span>
Opus supports bitrates from 6 kbit/s to 510 kbit/s. The bitrate can
be changed dynamically within that range. All other parameters being
equal, higher bitrates result in higher audio quality.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Recommended Bitrate</span>
For a frame size of 20 ms, these are the bitrate "sweet spots" for
Opus in various configurations:
o 8-12 kbit/s for NB speech,
o 16-20 kbit/s for WB speech,
o 28-40 kbit/s for FB speech,
o 48-64 kbit/s for FB mono music, and
o 64-128 kbit/s for FB stereo music.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Variable versus Constant Bitrate</span>
For the same average bitrate, variable bitrate (VBR) can achieve
higher audio quality than constant bitrate (CBR). For the majority
of voice transmission applications, VBR is the best choice. One
reason for choosing CBR is the potential information leak that
_might_ occur when encrypting the compressed stream. See [<a href="./rfc6562" title=""Guidelines for the Use of Variable Bit Rate Audio with Secure RTP"">RFC6562</a>]
for guidelines on when VBR is appropriate for encrypted audio
communications. In the case where an existing VBR stream needs to be
converted to CBR for security reasons, the Opus padding mechanism
<span class="grey">Spittka, et al. Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
described in [<a href="./rfc6716" title=""Definition of the Opus Audio Codec"">RFC6716</a>] is the RECOMMENDED way to achieve padding
because the RTP padding bit is unencrypted.
The bitrate can be adjusted at any point in time. To avoid
congestion, the average bitrate SHOULD NOT exceed the available
network bandwidth. If no target bitrate is specified, the bitrates
specified in <a href="#section-3.1.1">Section 3.1.1</a> are RECOMMENDED.
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. Discontinuous Transmission (DTX)</span>
Opus can, as described in <a href="#section-3.1.2">Section 3.1.2</a>, be operated with a variable
bitrate. In that case, the encoder will automatically reduce the
bitrate for certain input signals, like periods of silence. When
using continuous transmission, it will reduce the bitrate when the
characteristics of the input signal permit, but it will never
interrupt the transmission to the receiver. Therefore, the received
signal will maintain the same high level of audio quality over the
full duration of a transmission while minimizing the average bitrate
over time.
In cases where the bitrate of Opus needs to be reduced even further
or in cases where only constant bitrate is available, the Opus
encoder can use Discontinuous Transmission (DTX), where parts of the
encoded signal that correspond to periods of silence in the input
speech or audio signal are not transmitted to the receiver. A
receiver can distinguish between DTX and packet loss by looking for
gaps in the sequence number, as described by <a href="./rfc3551#section-4.1">Section 4.1
of [RFC3551]</a>.
On the receiving side, the non-transmitted parts will be handled by a
frame loss concealment unit in the Opus decoder, which generates a
comfort noise signal to replace the non-transmitted parts of the
speech or audio signal. Using Comfort Noise as defined in [<a href="./rfc3389" title=""Real-time Transport Protocol (RTP) Payload for Comfort Noise (CN)"">RFC3389</a>]
with Opus is discouraged. The transmitter MUST drop whole frames
only, based on the size of the last transmitted frame, to ensure
successive RTP timestamps differ by a multiple of 120 and to allow
the receiver to use whole frames for concealment.
DTX can be used with both variable and constant bitrate. It will
have a slightly lower speech or audio quality than continuous
transmission. Therefore, using continuous transmission is
RECOMMENDED unless constraints on available network bandwidth are
severe.
<span class="grey">Spittka, et al. Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Complexity</span>
Complexity of the encoder can be scaled to optimize for CPU resources
in real time, mostly as a trade-off between audio quality and
bitrate. Also, different modes of Opus have different complexity.
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Forward Error Correction (FEC)</span>
The voice mode of Opus allows for embedding in-band Forward Error
Correction (FEC) data into the Opus bitstream. This FEC scheme adds
redundant information about the previous packet (N-1) to the current
output packet N. For each frame, the encoder decides whether to use
FEC based on (1) an externally provided estimate of the channel's
packet loss rate; (2) an externally provided estimate of the
channel's capacity; (3) the sensitivity of the audio or speech signal
to packet loss; and (4) whether the receiving decoder has indicated
it can take advantage of in-band FEC information. The decision to
send in-band FEC information is entirely controlled by the encoder;
therefore, no special precautions for the payload have to be taken.
On the receiving side, the decoder can take advantage of this
additional information when it loses a packet and the next packet is
available. In order to use the FEC data, the jitter buffer needs to
provide access to payloads with the FEC data. Instead of performing
loss concealment for a missing packet, the receiver can then
configure its decoder to decode the FEC data from the next packet.
Any compliant Opus decoder is capable of ignoring FEC information
when it is not needed, so encoding with FEC cannot cause
interoperability problems. However, if FEC cannot be used on the
receiving side, then FEC SHOULD NOT be used, as it leads to an
inefficient usage of network resources. Decoder support for FEC
SHOULD be indicated at the time a session is set up.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Stereo Operation</span>
Opus allows for transmission of stereo audio signals. This operation
is signaled in-band in the Opus bitstream and no special arrangement
is needed in the payload format. An Opus decoder is capable of
handling a stereo encoding, but an application might only be capable
of consuming a single audio channel.
If a decoder cannot take advantage of the benefits of a stereo
signal, this SHOULD be indicated at the time a session is set up. In
that case, the sending side SHOULD NOT send stereo signals as it
leads to an inefficient usage of network resources.
<span class="grey">Spittka, et al. Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Opus RTP Payload Format</span>
The payload format for Opus consists of the RTP header and Opus
payload data.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. RTP Header Usage</span>
The format of the RTP header is specified in [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. The use of
the fields of the RTP header by the Opus payload format is consistent
with that specification.
The payload length of Opus is an integer number of octets; therefore,
no padding is necessary. The payload MAY be padded by an integer
number of octets according to [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>], although the Opus internal
padding is preferred.
The timestamp, sequence number, and marker bit (M) of the RTP header
are used in accordance with <a href="./rfc3551#section-4.1">Section 4.1 of [RFC3551]</a>.
The RTP payload type for Opus is to be assigned dynamically.
The receiving side MUST be prepared to receive duplicate RTP packets.
The receiver MUST provide at most one of those payloads to the Opus
decoder for decoding, and it MUST discard the others.
Opus supports 5 different audio bandwidths, which can be adjusted
during a stream. The RTP timestamp is incremented with a 48000 Hz
clock rate for all modes of Opus and all sampling rates. The unit
for the timestamp is samples per single (mono) channel. The RTP
timestamp corresponds to the sample time of the first encoded sample
in the encoded frame. For data encoded with sampling rates other
than 48000 Hz, the sampling rate has to be adjusted to 48000 Hz.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Payload Structure</span>
The Opus encoder can output encoded frames representing 2.5, 5, 10,
20, 40, or 60 ms of speech or audio data. Further, an arbitrary
number of frames can be combined into a packet, up to a maximum
packet duration representing 120 ms of speech or audio data. The
grouping of one or more Opus frames into a single Opus packet is
defined in <a href="./rfc6716#section-3">Section 3 of [RFC6716]</a>. An RTP payload MUST contain
exactly one Opus packet as defined by that document.
Figure 1 shows the structure combined with the RTP header.
<span class="grey">Spittka, et al. Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
+----------+--------------+
|RTP Header| Opus Payload |
+----------+--------------+
Figure 1: Packet Structure with RTP Header
Table 2 shows supported frame sizes in milliseconds of encoded speech
or audio data for the speech and audio modes (Mode) and sampling
rates (fs) of Opus, and it shows how the timestamp is incremented for
packetization (ts incr). If the Opus encoder outputs multiple
encoded frames into a single packet, the timestamp increment is the
sum of the increments for the individual frames.
+---------+-----------------+-----+-----+-----+-----+------+------+
| Mode | fs | 2.5 | 5 | 10 | 20 | 40 | 60 |
+---------+-----------------+-----+-----+-----+-----+------+------+
| ts incr | all | 120 | 240 | 480 | 960 | 1920 | 2880 |
| | | | | | | | |
| voice | NB/MB/WB/SWB/FB | x | x | o | o | o | o |
| | | | | | | | |
| audio | NB/WB/SWB/FB | o | o | o | o | x | x |
+---------+-----------------+-----+-----+-----+-----+------+------+
Table 2: Supported Opus frame sizes and timestamp increments are
marked with an o. Unsupported ones are marked with an x.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Congestion Control</span>
The target bitrate of Opus can be adjusted at any point in time, thus
allowing efficient congestion control. Furthermore, the amount of
encoded speech or audio data encoded in a single packet can be used
for congestion control, since the transmission rate is inversely
proportional to the packet duration. A lower packet transmission
rate reduces the amount of header overhead, but at the same time
increases latency and loss sensitivity, so it ought to be used with
care.
Since UDP does not provide congestion control, applications that use
RTP over UDP SHOULD implement their own congestion control above the
UDP layer [<a href="./rfc5405" title=""Unicast UDP Usage Guidelines for Application Designers"">RFC5405</a>]. Work in the RMCAT working group [<a href="#ref-rmcat" title=""RTP Media Congestion Avoidance Techniques (rmcat) Documents"">rmcat</a>]
describes the interactions and conceptual interfaces necessary
between the application components that relate to congestion control,
including the RTP layer, the higher-level media codec control layer,
and the lower-level transport interface, as well as components
dedicated to congestion control functions.
<span class="grey">Spittka, et al. Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
One media subtype (audio/opus) has been defined and registered as
described in the following section.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Opus Media Type Registration</span>
Media type registration is done according to [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>] and [<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>].
Type name: audio
Subtype name: opus
Required parameters:
rate: the RTP timestamp is incremented with a 48000 Hz clock rate
for all modes of Opus and all sampling rates. For data encoded
with sampling rates other than 48000 Hz, the sampling rate has to
be adjusted to 48000 Hz.
Optional parameters:
maxplaybackrate: a hint about the maximum output sampling rate that
the receiver is capable of rendering in Hz. The decoder MUST be
capable of decoding any audio bandwidth, but, due to hardware
limitations, only signals up to the specified sampling rate can be
played back. Sending signals with higher audio bandwidth results
in higher than necessary network usage and encoding complexity, so
an encoder SHOULD NOT encode frequencies above the audio bandwidth
specified by maxplaybackrate. This parameter can take any value
between 8000 and 48000, although commonly the value will match one
of the Opus bandwidths (Table 1). By default, the receiver is
assumed to have no limitations, i.e., 48000.
sprop-maxcapturerate: a hint about the maximum input sampling rate
that the sender is likely to produce. This is not a guarantee
that the sender will never send any higher bandwidth (e.g., it
could send a prerecorded prompt that uses a higher bandwidth), but
it indicates to the receiver that frequencies above this maximum
can safely be discarded. This parameter is useful to avoid
wasting receiver resources by operating the audio processing
pipeline (e.g., echo cancellation) at a higher rate than
necessary. This parameter can take any value between 8000 and
48000, although commonly the value will match one of the Opus
bandwidths (Table 1). By default, the sender is assumed to have
no limitations, i.e., 48000.
<span class="grey">Spittka, et al. Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
maxptime: the maximum duration of media represented by a packet
(according to <a href="./rfc4566#section-6">Section 6 of [RFC4566]</a>) that a decoder wants to
receive, in milliseconds rounded up to the next full integer
value. Possible values are 3, 5, 10, 20, 40, 60, or an arbitrary
multiple of an Opus frame size rounded up to the next full integer
value, up to a maximum value of 120, as defined in <a href="#section-4">Section 4</a>. If
no value is specified, the default is 120.
ptime: the preferred duration of media represented by a packet
(according to <a href="./rfc4566#section-6">Section 6 of [RFC4566]</a>) that a decoder wants to
receive, in milliseconds rounded up to the next full integer
value. Possible values are 3, 5, 10, 20, 40, 60, or an arbitrary
multiple of an Opus frame size rounded up to the next full integer
value, up to a maximum value of 120, as defined in <a href="#section-4">Section 4</a>. If
no value is specified, the default is 20.
maxaveragebitrate: specifies the maximum average receive bitrate of
a session in bits per second (bit/s). The actual value of the
bitrate can vary, as it is dependent on the characteristics of the
media in a packet. Note that the maximum average bitrate MAY be
modified dynamically during a session. Any positive integer is
allowed, but values outside the range 6000 to 510000 SHOULD be
ignored. If no value is specified, the maximum value specified in
<a href="#section-3.1.1">Section 3.1.1</a> for the corresponding mode of Opus and corresponding
maxplaybackrate is the default.
stereo: specifies whether the decoder prefers receiving stereo or
mono signals. Possible values are 1 and 0, where 1 specifies that
stereo signals are preferred, and 0 specifies that only mono
signals are preferred. Independent of the stereo parameter, every
receiver MUST be able to receive and decode stereo signals, but
sending stereo signals to a receiver that signaled a preference
for mono signals may result in higher than necessary network
utilization and encoding complexity. If no value is specified,
the default is 0 (mono).
sprop-stereo: specifies whether the sender is likely to produce
stereo audio. Possible values are 1 and 0, where 1 specifies that
stereo signals are likely to be sent, and 0 specifies that the
sender will likely only send mono. This is not a guarantee that
the sender will never send stereo audio (e.g., it could send a
prerecorded prompt that uses stereo), but it indicates to the
receiver that the received signal can be safely downmixed to mono.
This parameter is useful to avoid wasting receiver resources by
operating the audio processing pipeline (e.g., echo cancellation)
in stereo when not necessary. If no value is specified, the
default is 0 (mono).
<span class="grey">Spittka, et al. Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
cbr: specifies if the decoder prefers the use of a constant bitrate
versus a variable bitrate. Possible values are 1 and 0, where 1
specifies constant bitrate, and 0 specifies variable bitrate. If
no value is specified, the default is 0 (vbr). When cbr is 1, the
maximum average bitrate can still change, e.g., to adapt to
changing network conditions.
useinbandfec: specifies that the decoder has the capability to take
advantage of the Opus in-band FEC. Possible values are 1 and 0.
Providing 0 when FEC cannot be used on the receiving side is
RECOMMENDED. If no value is specified, useinbandfec is assumed to
be 0. This parameter is only a preference, and the receiver MUST
be able to process packets that include FEC information, even if
it means the FEC part is discarded.
usedtx: specifies if the decoder prefers the use of DTX. Possible
values are 1 and 0. If no value is specified, the default is 0.
Encoding considerations:
The Opus media type is framed and consists of binary data
according to <a href="./rfc6838#section-4.8">Section 4.8 of [RFC6838]</a>.
Security considerations:
See <a href="#section-8">Section 8</a> of this document.
Interoperability considerations: none
Published specification: <a href="./rfc7587">RFC 7587</a>
Applications that use this media type:
Any application that requires the transport of speech or audio
data can use this media type. Some examples are, but not limited
to, audio and video conferencing, Voice over IP, and media
streaming.
Fragment identifier considerations: N/A
Person & email address to contact for further information:
SILK Support, silksupport@skype.net
Jean-Marc Valin, jmvalin@jmvalin.ca
Intended usage: COMMON
<span class="grey">Spittka, et al. Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
Restrictions on usage:
For transfer over RTP, the RTP payload format (<a href="#section-4">Section 4</a> of this
document) SHALL be used.
Authors:
Julian Spittka, jspittka@gmail.com
Koen Vos, koenvos74@gmail.com
Jean-Marc Valin, jmvalin@jmvalin.ca
Change controller: IETF Payload working group delegated from the IESG
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. SDP Considerations</span>
The information described in the media type specification has a
specific mapping to fields in the Session Description Protocol (SDP)
[<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>], which is commonly used to describe RTP sessions. When SDP
is used to specify sessions employing Opus, the mapping is as
follows:
o The media type ("audio") goes in SDP "m=" as the media name.
o The media subtype ("opus") goes in SDP "a=rtpmap" as the encoding
name. The RTP clock rate in "a=rtpmap" MUST be 48000, and the
number of channels MUST be 2.
o The OPTIONAL media type parameters "ptime" and "maxptime" are
mapped to "a=ptime" and "a=maxptime" attributes, respectively, in
the SDP.
o The OPTIONAL media type parameters "maxaveragebitrate",
"maxplaybackrate", "stereo", "cbr", "useinbandfec", and "usedtx",
when present, MUST be included in the "a=fmtp" attribute in the
SDP, expressed as a media type string in the form of a semicolon-
separated list of parameter=value pairs (e.g.,
maxplaybackrate=48000). They MUST NOT be specified in an SSRC-
specific "fmtp" source-level attribute (as defined in <a href="./rfc5576#section-6.3">Section 6.3
of [RFC5576]</a>).
o The OPTIONAL media type parameters "sprop-maxcapturerate" and
"sprop-stereo" MAY be mapped to the "a=fmtp" SDP attribute by
copying them directly from the media type parameter string as part
of the semicolon-separated list of parameter=value pairs (e.g.,
sprop-stereo=1). These same OPTIONAL media type parameters MAY
also be specified using an SSRC-specific "fmtp" source-level
<span class="grey">Spittka, et al. Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
attribute as described in <a href="./rfc5576#section-6.3">Section 6.3 of [RFC5576]</a>. They MAY be
specified in both places, in which case the parameter in the
source-level attribute overrides the one found on the "a=fmtp"
line. The value of any parameter that is not specified in a
source-level source attribute MUST be taken from the "a=fmtp"
line, if it is present there.
Below are some examples of SDP session descriptions for Opus:
Example 1: Standard mono session with 48000 Hz clock rate
m=audio 54312 RTP/AVP 101
a=rtpmap:101 opus/48000/2
Example 2: 16000 Hz clock rate, maximum packet size of 40 ms,
recommended packet size of 40 ms, maximum average bitrate of 20000
bit/s, prefers to receive stereo but only plans to send mono, FEC is
desired, DTX is not desired
m=audio 54312 RTP/AVP 101
a=rtpmap:101 opus/48000/2
a=fmtp:101 maxplaybackrate=16000; sprop-maxcapturerate=16000;
maxaveragebitrate=20000; stereo=1; useinbandfec=1; usedtx=0
a=ptime:40
a=maxptime:40
Example 3: Two-way full-band stereo preferred
m=audio 54312 RTP/AVP 101
a=rtpmap:101 opus/48000/2
a=fmtp:101 stereo=1; sprop-stereo=1
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. SDP Offer/Answer Considerations</span>
When using the offer/answer procedure described in [<a href="./rfc3264" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">RFC3264</a>] to
negotiate the use of Opus, the following considerations apply:
o Opus supports several clock rates. For signaling purposes, only
the highest, i.e., 48000, is used. The actual clock rate of the
corresponding media is signaled inside the payload and is not
restricted by this payload format description. The decoder MUST
be capable of decoding every received clock rate. An example is
shown below:
m=audio 54312 RTP/AVP 100
a=rtpmap:100 opus/48000/2
<span class="grey">Spittka, et al. Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
o The "ptime" and "maxptime" parameters are unidirectional receive-
only parameters and typically will not compromise
interoperability; however, some values might cause application
performance to suffer. [<a href="./rfc3264" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">RFC3264</a>] defines the SDP offer/answer
handling of the "ptime" parameter. The "maxptime" parameter MUST
be handled in the same way.
o The "maxplaybackrate" parameter is a unidirectional receive-only
parameter that reflects limitations of the local receiver. When
sending to a single destination, a sender MUST NOT use an audio
bandwidth higher than necessary to make full use of audio sampled
at a sampling rate of "maxplaybackrate". Gateways or senders that
are sending the same encoded audio to multiple destinations SHOULD
NOT use an audio bandwidth higher than necessary to represent
audio sampled at "maxplaybackrate", as this would lead to
inefficient use of network resources. The "maxplaybackrate"
parameter does not affect interoperability. Also, this parameter
SHOULD NOT be used to adjust the audio bandwidth as a function of
the bitrate, as this is the responsibility of the Opus encoder
implementation.
o The "maxaveragebitrate" parameter is a unidirectional receive-only
parameter that reflects limitations of the local receiver. The
sender of the other side MUST NOT send with an average bitrate
higher than "maxaveragebitrate" as it might overload the network
and/or receiver. The "maxaveragebitrate" parameter typically will
not compromise interoperability; however, some values might cause
application performance to suffer and ought to be set with care.
o The "sprop-maxcapturerate" and "sprop-stereo" parameters are
unidirectional sender-only parameters that reflect limitations of
the sender side. They allow the receiver to set up a reduced-
complexity audio processing pipeline if the sender is not planning
to use the full range of Opus's capabilities. Neither "sprop-
maxcapturerate" nor "sprop-stereo" affect interoperability, and
the receiver MUST be capable of receiving any signal.
o The "stereo" parameter is a unidirectional receive-only parameter.
When sending to a single destination, a sender MUST NOT use stereo
when "stereo" is 0. Gateways or senders that are sending the same
encoded audio to multiple destinations SHOULD NOT use stereo when
"stereo" is 0, as this would lead to inefficient use of network
resources. The "stereo" parameter does not affect
interoperability.
o The "cbr" parameter is a unidirectional receive-only parameter.
<span class="grey">Spittka, et al. Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
o The "useinbandfec" parameter is a unidirectional receive-only
parameter.
o The "usedtx" parameter is a unidirectional receive-only parameter.
o Any unknown parameter in an offer MUST be ignored by the receiver
and MUST be removed from the answer.
The Opus parameters in an SDP offer/answer exchange are completely
orthogonal, and there is no relationship between the SDP offer and
the answer.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. Declarative SDP Considerations for Opus</span>
For declarative use of SDP such as in the Session Announcement
Protocol (SAP) [<a href="./rfc2974" title=""Session Announcement Protocol"">RFC2974</a>] and the Real Time Streaming Protocol (RTSP)
[<a href="./rfc2326" title=""Real Time Streaming Protocol (RTSP)"">RFC2326</a>] for Opus, the following needs to be considered:
o The values for "maxptime", "ptime", "maxplaybackrate", and
"maxaveragebitrate" ought to be selected carefully to ensure that
a reasonable performance can be achieved for the participants of a
session.
o The values for "maxptime", "ptime", and of the payload format
configuration are recommendations by the decoding side to ensure
the best performance for the decoder.
o All other parameters of the payload format configuration are
declarative and a participant MUST use the configurations that are
provided for the session. More than one configuration can be
provided if necessary by declaring multiple RTP payload types;
however, the number of types ought to be kept small.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
Use of VBR is subject to the security considerations in [<a href="./rfc6562" title=""Guidelines for the Use of Variable Bit Rate Audio with Secure RTP"">RFC6562</a>].
RTP packets using the payload format defined in this specification
are subject to the security considerations discussed in the RTP
specification [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] and in any applicable RTP profile such as
RTP/AVP [<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>], RTP/AVPF [<a href="./rfc4585" title=""Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF)"">RFC4585</a>], RTP/SAVP [<a href="./rfc3711" title=""The Secure Real-time Transport Protocol (SRTP)"">RFC3711</a>], or RTP/
SAVPF [<a href="./rfc5124" title=""Extended Secure RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/SAVPF)"">RFC5124</a>]. However, as "Securing the RTP Framework: Why RTP
Does Not Mandate a Single Media Security Solution" [<a href="./rfc7202" title=""Securing the RTP Framework: Why RTP Does Not Mandate a Single Media Security Solution"">RFC7202</a>]
discusses, it is not an RTP payload format's responsibility to
discuss or mandate what solutions are used to meet the basic security
goals like confidentiality, integrity, and source authenticity for
RTP in general. This responsibility lies on anyone using RTP in an
application. They can find guidance on available security mechanisms
<span class="grey">Spittka, et al. Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
and important considerations in "Options for Securing RTP Sessions"
[<a href="./rfc7201" title=""Options for Securing RTP Sessions"">RFC7201</a>]. Applications SHOULD use one or more appropriate strong
security mechanisms.
This payload format and the Opus encoding do not exhibit any
significant non-uniformity in the receiver-end computational load and
thus are unlikely to pose a denial-of-service threat due to the
receipt of pathological datagrams.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC2326">RFC2326</a>] Schulzrinne, H., Rao, A., and R. Lanphier, "Real Time
Streaming Protocol (RTSP)", <a href="./rfc2326">RFC 2326</a>,
DOI 10.17487/RFC2326, April 1998,
<<a href="http://www.rfc-editor.org/info/rfc2326">http://www.rfc-editor.org/info/rfc2326</a>>.
[<a id="ref-RFC3264">RFC3264</a>] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model
with Session Description Protocol (SDP)", <a href="./rfc3264">RFC 3264</a>,
DOI 10.17487/RFC3264, June 2002,
<<a href="http://www.rfc-editor.org/info/rfc3264">http://www.rfc-editor.org/info/rfc3264</a>>.
[<a id="ref-RFC3389">RFC3389</a>] Zopf, R., "Real-time Transport Protocol (RTP) Payload for
Comfort Noise (CN)", <a href="./rfc3389">RFC 3389</a>, DOI 10.17487/RFC3389,
September 2002, <<a href="http://www.rfc-editor.org/info/rfc3389">http://www.rfc-editor.org/info/rfc3389</a>>.
[<a id="ref-RFC3550">RFC3550</a>] Schulzrinne, H., Casner, S., Frederick, R., and V.
Jacobson, "RTP: A Transport Protocol for Real-Time
Applications", STD 64, <a href="./rfc3550">RFC 3550</a>, DOI 10.17487/RFC3550,
July 2003, <<a href="http://www.rfc-editor.org/info/rfc3550">http://www.rfc-editor.org/info/rfc3550</a>>.
[<a id="ref-RFC3551">RFC3551</a>] Schulzrinne, H. and S. Casner, "RTP Profile for Audio and
Video Conferences with Minimal Control", STD 65, <a href="./rfc3551">RFC 3551</a>,
DOI 10.17487/RFC3551, July 2003,
<<a href="http://www.rfc-editor.org/info/rfc3551">http://www.rfc-editor.org/info/rfc3551</a>>.
[<a id="ref-RFC3711">RFC3711</a>] Baugher, M., McGrew, D., Naslund, M., Carrara, E., and K.
Norrman, "The Secure Real-time Transport Protocol (SRTP)",
<a href="./rfc3711">RFC 3711</a>, DOI 10.17487/RFC3711, March 2004,
<<a href="http://www.rfc-editor.org/info/rfc3711">http://www.rfc-editor.org/info/rfc3711</a>>.
<span class="grey">Spittka, et al. Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
[<a id="ref-RFC4566">RFC4566</a>] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session
Description Protocol", <a href="./rfc4566">RFC 4566</a>, DOI 10.17487/RFC4566,
July 2006, <<a href="http://www.rfc-editor.org/info/rfc4566">http://www.rfc-editor.org/info/rfc4566</a>>.
[<a id="ref-RFC4855">RFC4855</a>] Casner, S., "Media Type Registration of RTP Payload
Formats", <a href="./rfc4855">RFC 4855</a>, DOI 10.17487/RFC4855, February 2007,
<<a href="http://www.rfc-editor.org/info/rfc4855">http://www.rfc-editor.org/info/rfc4855</a>>.
[<a id="ref-RFC5576">RFC5576</a>] Lennox, J., Ott, J., and T. Schierl, "Source-Specific
Media Attributes in the Session Description Protocol
(SDP)", <a href="./rfc5576">RFC 5576</a>, DOI 10.17487/RFC5576, June 2009,
<<a href="http://www.rfc-editor.org/info/rfc5576">http://www.rfc-editor.org/info/rfc5576</a>>.
[<a id="ref-RFC6562">RFC6562</a>] Perkins, C. and JM. Valin, "Guidelines for the Use of
Variable Bit Rate Audio with Secure RTP", <a href="./rfc6562">RFC 6562</a>,
DOI 10.17487/RFC6562, March 2012,
<<a href="http://www.rfc-editor.org/info/rfc6562">http://www.rfc-editor.org/info/rfc6562</a>>.
[<a id="ref-RFC6716">RFC6716</a>] Valin, JM., Vos, K., and T. Terriberry, "Definition of the
Opus Audio Codec", <a href="./rfc6716">RFC 6716</a>, DOI 10.17487/RFC6716,
September 2012, <<a href="http://www.rfc-editor.org/info/rfc6716">http://www.rfc-editor.org/info/rfc6716</a>>.
[<a id="ref-RFC6838">RFC6838</a>] Freed, N., Klensin, J., and T. Hansen, "Media Type
Specifications and Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>,
<a href="./rfc6838">RFC 6838</a>, DOI 10.17487/RFC6838, January 2013,
<<a href="http://www.rfc-editor.org/info/rfc6838">http://www.rfc-editor.org/info/rfc6838</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-RFC2974">RFC2974</a>] Handley, M., Perkins, C., and E. Whelan, "Session
Announcement Protocol", <a href="./rfc2974">RFC 2974</a>, DOI 10.17487/RFC2974,
October 2000, <<a href="http://www.rfc-editor.org/info/rfc2974">http://www.rfc-editor.org/info/rfc2974</a>>.
[<a id="ref-RFC4585">RFC4585</a>] Ott, J., Wenger, S., Sato, N., Burmeister, C., and J. Rey,
"Extended RTP Profile for Real-time Transport Control
Protocol (RTCP)-Based Feedback (RTP/AVPF)", <a href="./rfc4585">RFC 4585</a>,
DOI 10.17487/RFC4585, July 2006,
<<a href="http://www.rfc-editor.org/info/rfc4585">http://www.rfc-editor.org/info/rfc4585</a>>.
[<a id="ref-RFC5124">RFC5124</a>] Ott, J. and E. Carrara, "Extended Secure RTP Profile for
Real-time Transport Control Protocol (RTCP)-Based Feedback
(RTP/SAVPF)", <a href="./rfc5124">RFC 5124</a>, DOI 10.17487/RFC5124, February
2008, <<a href="http://www.rfc-editor.org/info/rfc5124">http://www.rfc-editor.org/info/rfc5124</a>>.
<span class="grey">Spittka, et al. Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7587">RFC 7587</a> RTP Payload Format for Opus June 2015</span>
[<a id="ref-RFC5405">RFC5405</a>] Eggert, L. and G. Fairhurst, "Unicast UDP Usage Guidelines
for Application Designers", <a href="https://www.rfc-editor.org/bcp/bcp145">BCP 145</a>, <a href="./rfc5405">RFC 5405</a>,
DOI 10.17487/RFC5405, November 2008,
<<a href="http://www.rfc-editor.org/info/rfc5405">http://www.rfc-editor.org/info/rfc5405</a>>.
[<a id="ref-RFC7201">RFC7201</a>] Westerlund, M. and C. Perkins, "Options for Securing RTP
Sessions", <a href="./rfc7201">RFC 7201</a>, DOI 10.17487/RFC7201, April 2014,
<<a href="http://www.rfc-editor.org/info/rfc7201">http://www.rfc-editor.org/info/rfc7201</a>>.
[<a id="ref-RFC7202">RFC7202</a>] Perkins, C. and M. Westerlund, "Securing the RTP
Framework: Why RTP Does Not Mandate a Single Media
Security Solution", <a href="./rfc7202">RFC 7202</a>, DOI 10.17487/RFC7202, April
2014, <<a href="http://www.rfc-editor.org/info/rfc7202">http://www.rfc-editor.org/info/rfc7202</a>>.
[<a id="ref-rmcat">rmcat</a>] "RTP Media Congestion Avoidance Techniques (rmcat)
Documents", <<a href="https://datatracker.ietf.org/wg/rmcat/documents/">https://datatracker.ietf.org/wg/rmcat/</a>
<a href="https://datatracker.ietf.org/wg/rmcat/documents/">documents/</a>>.
Acknowledgements
Many people have made useful comments and suggestions contributing to
this document. In particular, we would like to thank Tina le Grand,
Cullen Jennings, Jonathan Lennox, Gregory Maxwell, Colin Perkins, Jan
Skoglund, Timothy B. Terriberry, Martin Thompson, Justin Uberti,
Magnus Westerlund, and Mo Zanaty.
Authors' Addresses
Julian Spittka
Email: jspittka@gmail.com
Koen Vos
vocTone
Email: koenvos74@gmail.com
Jean-Marc Valin
Mozilla
331 E. Evelyn Avenue
Mountain View, CA 94041
United States
Email: jmvalin@jmvalin.ca
Spittka, et al. Standards Track [Page 18]
</pre>
|