<?xml version='1.0' encoding='utf-8'?>
<!-- [rfced] updated by Chris /08/05/19 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" submissionType="IETF" category="std" consensus="yes" number="0000" ipr="trust200902" obsoletes="" updates="" xml:lang="en" tocInclude="true" symRefs="true" sortRefs="true" version="3" docName="draft-ietf-rtcweb-fec-10">
  <!-- xml2rfc v2v3 conversion 2.27.0 -->
  <front>
    <title abbrev="WebRTC FEC">WebRTC Forward Error Correction
    Requirements</title>
    <seriesInfo name="RFC" value="0000"/>
    <author fullname="Justin Uberti" initials="J." surname="Uberti">
      <organization>Google</organization>
      <address>
        <postal>
          <street>747 6th St S</street>
          <city>Kirkland</city>
          <region>WA</region>
          <code>98033</code>
          <country>USA</country>
        </postal>
        <email>justin@uberti.name</email>
      </address>
    </author>
    <date year="2019" month="July"/>
    <area>RAI</area>
    <!-- [rfced] Please insert any keywords (beyond those that appear in                  
the title) for use on https://www.rfc-editor.org/search. -->
    <keyword>example</keyword>
    <abstract>
      <t>This document provides information and requirements for how Forward
      Error Correction (FEC) should be used by WebRTC implementations.</t>
    </abstract>
  </front>
  <middle>
    <section numbered="true" toc="default">
      <name>Introduction</name>
      <t>In situations where packet loss is high, or perfect media quality is
      essential, Forward Error Correction (FEC) can be used to proactively
      recover from packet losses. This specification provides guidance on which
      FEC mechanisms to use, and how to use them, for WebRTC
      implementations.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Terminology</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
      NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
      "MAY", and "OPTIONAL" in this document are to be interpreted as
      described in BCP 14 <xref target="RFC2119" format="default"/> <xref target="RFC8174" format="default"/>
      when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Types of FEC</name>
      <t>FEC describes the sending of redundant information in an outgoing
      packet stream so that information can still be recovered even in the face
      of packet loss. There are multiple ways this can be accomplished
      for RTP media streams <xref target="RFC3550" format="default"/>; this section enumerates
      the various mechanisms available and describes their tradeoffs.</t>
      <section numbered="true" toc="default">
        <name>Separate FEC Stream</name>
        <t>This approach, as described in <xref target="RFC5956" format="default"/>,
        Section 4.3, sends FEC packets as an independent RTP stream with its own
        synchronization source (SSRC, <xref target="RFC3550" format="default"/>) and payload
        type, multiplexed with the primary encoding. While this approach can
        protect multiple packets of the
        primary encoding with a single FEC packet, each FEC packet will have its
        own IP+UDP+RTP+FEC header, and this overhead can be excessive in some
        cases, e.g., when protecting each primary packet with a FEC packet.</t>
        <t>This approach allows for recovery of entire RTP packets, including
        the full RTP header.</t>
      </section>
      <section anchor="redundant-encoding" numbered="true" toc="default">
        <name>Redundant Encoding</name>
        <t>This approach, as described in
        <xref target="RFC2198" format="default"/>, allows for redundant data to be piggybacked
        on an existing primary encoding, all in a single packet. This redundant
        data may be an exact copy of a previous payload, or for codecs that
        support variable-bitrate encodings, possibly a smaller, lower-quality
        representation. In certain cases, the redundant data could include
        encodings of multiple prior audio frames.</t>
        <t>Since there is only a single set of packet headers, this approach
        allows for a very efficient representation of primary + redundant data.
        However, this savings is only realized when the data all fits into a
        single packet (i.e. the size is less than a MTU). As a result, this
        approach is generally not useful for video content.</t>
        <t>As described in
        <xref target="RFC2198" format="default"/>, Section 4, this approach cannot recover
        certain parts of the RTP header, including the marker bit, CSRC
        information, and header extensions.</t>
      </section>
      <section numbered="true" toc="default">
        <name>Codec-Specific In-band FEC</name>
        <t>Some audio codecs, notably Opus
        <xref target="RFC6716" format="default"/> and AMR
        <xref target="RFC4867" format="default"/>, support their own in-band FEC mechanism,
        where redundant data is included in the codec payload. This is similar
        to the redundant encoding mechanism described above, but as it adds no
        additional framing, it can be slightly more efficient.</t>
        <t>For Opus, audio frames deemed important are re-encoded at a lower
        bitrate and appended to the next payload, allowing partial recovery
        of a lost packet. This scheme is fairly efficient; experiments
        performed indicate that when Opus FEC is used, the overhead imposed is
        only about 20-30%, depending on the amount of protection needed. Note
        that this mechanism can only carry redundancy information for the
        immediately preceding audio frame; as such the decoder cannot fully recover
        multiple consecutive lost packets, which can be a problem on wireless
        networks. See <xref target="RFC6716" format="default"/>, Section 2.1.7, and
        <xref target="OpusFEC" format="default">this Opus mailing list post</xref> for more
        details.</t>
        <t>For AMR/AMR-WB, packets can contain copies or lower-quality
        encodings of multiple prior audio frames. See
        <xref target="RFC4867" format="default"/>, Section 3.7.1 for details on this
        mechanism.</t>
        <t>In-band FEC mechanisms cannot recover any of the RTP header.</t>
      </section>
    </section>
    <section anchor="audio-fec" numbered="true" toc="default">
      <name>FEC for Audio Content</name>
      <t>The following section provides guidance on how to best use FEC for
      transmitting audio data. As indicated in
      <xref target="adaptive-fec" format="default"/> below, FEC should only be activated if
      network conditions warrant it, or upon explicit application request.</t>
      <section numbered="true" toc="default">
        <name>Recommended Mechanism</name>
        <t>When using variable-bitrate codecs without an internal FEC,
        redundant encoding
        (as described in <xref target="redundant-encoding" format="default"/>)
        with lower-fidelity
        version(s) of the previous packet(s) is RECOMMENDED. This provides
        reasonable protection of the payload with only moderate bitrate
        increase, as the redundant encodings can be significantly smaller than
        the primary encoding.</t>
        <t>When using the Opus codec, use of the built-in Opus FEC mechanism is
        RECOMMENDED. This provides reasonable protection of the audio stream
        against individual losses, with minimal overhead. Note that, as
        indicated above, the built-in Opus FEC only provides single-frame
        redundancy; if multi-packet protection is needed, the aforementioned
        redundant encoding with reduced-bitrate Opus encodings
        SHOULD be used instead.</t>
        <t>When using the AMR/AMR-WB codecs, use of their built-in FEC
        mechanism is RECOMMENDED. This provides slightly more efficient
        protection of the audio stream than redundant encoding.</t>
        <t>When using constant-bitrate codecs, e.g.,
        PCMU <xref target="RFC5391" format="default"/>, redundant encoding MAY be used, but
        this will result in a potentially significant bitrate increase, and
        suddenly increasing bitrate to deal with losses from congestion
        may actually make things worse.</t>
        <t>Because of the lower packet rate of audio encodings, usually a
        single packet per frame, use of a separate FEC stream comes with a
        higher overhead than other mechanisms, and therefore is NOT
        RECOMMENDED.</t>
        <t>As mentioned above, the recommended mechanisms do not allow recovery
        of parts of the RTP header that may be important in certain audio
        applications, e.g., CSRCs and RTP header extensions like those
        specified in
        <xref target="RFC6464" format="default"/> and
        <xref target="RFC6465" format="default"/>. Implementations SHOULD account for this and
        attempt to approximate this information, using an approach similar to
        those described in
        <xref target="RFC2198" format="default"/>, Section 4, and
        <xref target="RFC6464" format="default"/>, Section 5.</t>
      </section>
      <section numbered="true" toc="default">
        <name>Negotiating Support</name>
        <t>Support for redundant encoding of a given RTP stream SHOULD be
        indicated by including audio/red
        <xref target="RFC2198" format="default"/> as an additional supported media type for the
        associated m= section in the SDP offer
        <xref target="RFC3264" format="default"/>. Answerers can reject the use of redundant
        encoding by not including the audio/red media type in the corresponding
        m= section in the SDP answer.</t>
        <t>Support for codec-specific FEC mechanisms are typically indicated
        via "a=fmtp" parameters.</t>
        <t>For Opus, a receiver MUST indicate that it is prepared to use
        incoming FEC data with the "useinbandfec=1" parameter, as specified in
        <xref target="RFC7587" format="default"/>. This parameter is declarative and can be
        negotiated separately for either media direction.</t>
        <t>For AMR/AMR-WB, support for redundant encoding, and the maximum
        supported depth, are controlled by the 'max-red' parameter, as
        specified in
        <xref target="RFC4867" format="default"/>, Section 8.1. Receivers MUST include this
        parameter, and set it to an appropriate value, as specified in
        <xref target="TS.26114" format="default"/>, Table 6.3.</t>
      </section>
    </section>
    <section anchor="video-fec" numbered="true" toc="default">
      <name>FEC for Video Content</name>
      <t>The following section provides guidance on how to best use FEC for
      transmitting video data. As indicated in
      <xref target="adaptive-fec" format="default"/> below, FEC should only be activated if
      network conditions warrant it, or upon explicit application request.</t>
      <section numbered="true" toc="default">
        <name>Recommended Mechanism</name>
        <t>Video frames, due to their size, often require multiple RTP packets.
        As discussed above, a separate FEC stream can protect multiple packets
        with a single FEC packet. In addition, the "flexfec" FEC mechanism
        described in
        <xref target="RFC8627" format="default"/> is also capable
        of protecting multiple RTP streams via a single FEC stream, including
        all the streams that are part of a BUNDLE
        <xref target="MMUSIC-SDP" format="default"/> group. As a
        result, for video content, use of a separate FEC stream with the
        flexfec RTP payload format is RECOMMENDED.</t>
        <t>To process the incoming FEC stream, the receiver can demultiplex it
        by SSRC, and then correlate it with the appropriate primary stream(s)
        via the CSRC(s) present in the RTP header of flexfec repair packets, or
        the SSRC field present in the FEC header of flexfec retransmission
        packets.</t>
      </section>
      <section numbered="true" toc="default">
        <name>Negotiating Support</name>
        <t>Support for a SSRC-multiplexed flexfec stream to protect a given RTP
        stream SHOULD be indicated by including one of the formats described in

        <xref target="RFC8627" format="default"/>, Section 5.1.2, as
        an additional supported media type for the associated m= section in the
        SDP offer
        <xref target="RFC3264" format="default"/>. As mentioned above, when BUNDLE is used,
        only a single flexfec repair stream will be created for each BUNDLE
        group, even if flexfec is negotiated for each primary stream.</t>
        <t>Answerers can reject the use of SSRC-multiplexed FEC, by not
        including the offered FEC formats in the corresponding m= section in
        the SDP answer.</t>
        <t>Use of FEC-only m-lines, and grouping using the SDP group mechanism
        as described in
        <xref target="RFC5956" format="default"/>, Section 4.1 is not currently defined for
        WebRTC, and SHOULD NOT be offered.</t>
        <t>Answerers SHOULD reject any FEC-only m-lines, unless they
        specifically know how to handle such a thing in a WebRTC context
        (perhaps defined by a future version of the WebRTC specifications).</t>
      </section>
    </section>
    <section numbered="true" toc="default">
      <name>FEC for Application Content</name>
      <t>WebRTC also supports the ability to send generic application data, and
      provides transport-level retransmission mechanisms to support full and
      partial (e.g. timed) reliability. See
      <xref target="WebRTC-DATA" format="default"/> for details.</t>
      <t>Because the application can control exactly what data to send, it has
      the ability to monitor packet statistics and perform its own
      application-level FEC, if necessary.</t>
      <t>As a result, this document makes no recommendations regarding FEC for
      the underlying data transport.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Implementation Requirements</name>
      <t>To support the functionality recommended above, implementations MUST
      be able to receive and make use of the relevant FEC formats for their
      supported audio codecs, and MUST indicate this support, as described in
      <xref target="audio-fec" format="default"/>. Use of these formats when sending, as
      mentioned above, is RECOMMENDED.</t>
      <t>The general FEC mechanism described in
      <xref target="RFC8627" format="default"/> SHOULD also be
      supported, as mentioned in
      <xref target="video-fec" format="default"/>.</t>
      <t>Implementations MAY support additional FEC mechanisms if desired, e.g.,

      <xref target="RFC5109" format="default"/>.</t>
    </section>
    <section anchor="adaptive-fec" numbered="true" toc="default">
      <name>Adaptive Use of FEC</name>
      <t>Because use of FEC always causes redundant data to be transmitted, and
      the total amount of data must remain within any bandwidth limits indicated
      by congestion control and the receiver, this will lead to less bandwidth
      available for the primary encoding, even when the redundant data is not
      being used. This is in contrast to methods like RTX
      <xref target="RFC4588" format="default"/> or flexfec's retransmission mode (
      <xref target="RFC8627" format="default"/>, Section 1.1.7),
      which only transmit redundant data when necessary, at the cost of an
      extra roundtrip and thereby increased media latency.</t>
      <t>Given this, WebRTC implementations SHOULD prefer using RTX or
      flexfec retransmissions instead of FEC when the connection RTT is within
      the application's latency budget, and otherwise SHOULD only
      transmit the amount of FEC needed to protect against the observed packet
      loss (which can be determined, e.g., by monitoring transmit packet loss
      data from RTCP Receiver Reports
      <xref target="RFC3550" format="default"/>), unless the application indicates it is
      willing to pay a quality penalty to proactively avoid losses.</t>
      <t>Note that when probing bandwidth, i.e., speculatively sending extra
      data to determine if additional link capacity exists, FEC data SHOULD be
      used as the additional data. Given that extra data is going to be sent
      regardless, it makes sense to have that data protect the primary payload;
      in addition, FEC can typically be applied in a way that increases
      bandwidth only modestly, which is necessary when probing.</t>
      <t>When using FEC with layered codecs, e.g.,
      <xref target="RFC6386" format="default"/>, where only base layer frames are critical to
      the decoding of future frames, implementations SHOULD only apply FEC to
      these base layer frames.</t>
      <t>Finally, it should be noted that although applying redundancy is often
      useful in protecting a stream against packet loss, if the loss is caused
      by network congestion, the additional bandwidth used by the redundant
      data may actually make the situation worse, and can lead to significant
      degradation of the network.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Security Considerations</name>
      <t>In the WebRTC context, FEC is specifically concerned with recovering
      data from lost packets; any corrupted packets will be discarded by the
      SRTP <xref target="RFC3711" format="default"/> decryption process. Therefore, as described
      in <xref target="RFC3711" format="default"/>, Section 10, the default processing when
      using FEC with SRTP is to perform FEC followed by SRTP at the sender, and
      SRTP followed by FEC at the receiver. This ordering is used for all the
      SRTP Protection Profiles used in DTLS-SRTP
      <xref target="RFC5763" format="default"/>, which are enumerated in
      <xref target="RFC5764" format="default"/>, Section 4.1.2.</t>
      <t>Additional security considerations for each individual FEC mechanism
      are enumerated in their respective documents.</t>
    </section>
    <section numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>This document requires no actions from IANA.</t>
    </section>
    <section numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>Several people provided significant input into this document,
      including Bernard Aboba, Jonathan Lennox, Giri Mandyam, Varun Singh, Tim
      Terriberry, Magnus Westerlund, and Mo Zanaty.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.2198.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3264.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4867.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5956.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.7587.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
        <!-- <?rfc include='reference.I-D.ietf-payload-flexible-fec-scheme'?>; Proposed Standard RFC 8627 -->
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.8627.xml"/>
        <!-- [rfced] [TS.26114] This URL is correct -->
        <reference anchor="TS.26114" target="http://www.3gpp.org/ftp/Specs/html-info/26114.htm">
          <front>
            <title>IP Multimedia Subsystem (IMS); Multimedia telephony; Media
          handling and interaction</title>
            <author>
              <organization>3GPP</organization>
            </author>
            <date day="22" month="September" year="2017"/>
          </front>
          <seriesInfo name="3GPP TS" value="26.114 15.0.0"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3550.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.3711.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.4588.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5109.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5391.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5763.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.5764.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6386.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6464.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6465.xml"/>
        <xi:include href="https://xml2rfc.tools.ietf.org/public/rfc/bibxml/reference.RFC.6716.xml"/>
        <!-- <?rfc include='reference.I-D.ietf-mmusic-sdp-bundle-negotiation'?>; in MISSREF state as of 08/05/19 -->
        <reference anchor="MMUSIC-SDP">
          <front>
            <title>Negotiating Media Multiplexing Using the Session Description Protocol (SDP)</title>
            <seriesInfo name="Work in Progress," value="draft-ietf-mmusic-sdp-bundle-negotiation-54"/>
            <author initials="C" surname="Holmberg" fullname="Christer Holmberg">
              <organization/>
            </author>
            <author initials="H" surname="Alvestrand" fullname="Harald Alvestrand">
              <organization/>
            </author>
            <author initials="C" surname="Jennings" fullname="Cullen Jennings">
              <organization/>
            </author>
            <date month="December" day="14" year="2018"/>
            <abstract>
              <t>This specification defines a new Session Description Protocol (SDP) Grouping Framework extension, 'BUNDLE'.  The extension can be used with the SDP Offer/Answer mechanism to negotiate the usage of a single transport (5-tuple) for sending and receiving media described by multiple SDP media descriptions ("m=" sections).  Such transport is referred to as a BUNDLE transport, and the media is referred to as bundled media.  The "m=" sections that use the BUNDLE transport form a BUNDLE group.  This specification updates RFC 3264, to also allow assigning a zero port value to a "m=" section in cases where the media described by the "m=" section is not disabled or rejected.  This specification updates RFC 5888, to also allow an SDP 'group' attribute to contain an identification-tag that identifies a "m=" section with the port set to zero.  This specification defines a new RTP Control Protocol (RTCP) source description (SDES) item and a new RTP header extension that can be used to correlate bundled RTP/RTCP packets with their appropriate "m=" section.  This specification updates RFC 7941, by adding an exception, for the MID RTP header extension, to the requirement regarding protection of an SDES RTP header extension carrying an SDES item for the MID RTP header extension.</t>
            </abstract>
          </front>
        </reference>
        <!-- <?rfc include='reference.I-D.ietf-rtcweb-data-channel'?>; in MISSREF state as of 08/05/19 -->
        <reference anchor="WebRTC-DATA">
          <front>
            <title>WebRTC Data Channels</title>
            <seriesInfo name="Work in Progress," value="draft-ietf-rtcweb-data-channel-13"/>
            <author initials="R" surname="Jesup" fullname="Randell Jesup">
              <organization/>
            </author>
            <author initials="S" surname="Loreto" fullname="Salvatore Loreto">
              <organization/>
            </author>
            <author initials="M" surname="Tuexen" fullname="Michael Tuexen">
              <organization/>
            </author>
            <date month="January" day="4" year="2015"/>
            <abstract>
              <t>The WebRTC framework specifies protocol support for direct interactive rich communication using audio, video, and data between two peers' web-browsers.  This document specifies the non-media data transport aspects of the WebRTC framework.  It provides an architectural overview of how the Stream Control Transmission Protocol (SCTP) is used in the WebRTC context as a generic transport service allowing WEB-browsers to exchange generic data from peer to peer.</t>
            </abstract>
          </front>
        </reference>
        <!-- [rfced] [OpusFEC] This URL is correct -->
        <reference anchor="OpusFEC" target="http://lists.xiph.org/pipermail/opus/2013-January/001904.html">
          <front>
            <title>Opus FEC</title>
            <author fullname="Tim Terriberry" initials="T." surname="Terriberry">
              <organization>Xiph</organization>
            </author>
            <date day="28" month="January" year="2013"/>
          </front>
        </reference>
      </references>
    </references>
    <section numbered="true" toc="default">
      <name>Change log</name>
      <t>Changes in draft -10:
      </t>
      <ul spacing="normal">
        <li>Additional editorial changes from IETF LC.</li>
      </ul>
      <t>Changes in draft -09:
      </t>
      <ul spacing="normal">
        <li>Editorial changes from IETF LC.</li>
        <li>Added new reference for Opus FEC.</li>
      </ul>
      <t>Changes in draft -08:
      </t>
      <ul spacing="normal">
        <li>Switch to RFC 8174 boilerplate.</li>
      </ul>
      <t>Changes in draft -07:
      </t>
      <ul spacing="normal">
        <li>Clarify how bandwidth management interacts with FEC.</li>
        <li>Make 3GPP reference normative.</li>
      </ul>
      <t>Changes in draft -06:
      </t>
      <ul spacing="normal">
        <li>Discuss how multiple streams can be protected by a single FlexFEC
        stream.</li>
        <li>Discuss FEC for bandwidth probing.</li>
        <li>Add note about recovery of RTP headers and header extensions.</li>
        <li>Add note about FEC/SRTP ordering.</li>
        <li>Clarify flexfec demux text, and mention retransmits.</li>
        <li>Clarify text regarding offers/answers.</li>
        <li>Make RFC2198 support SHOULD strength.</li>
        <li>Clean up references.</li>
      </ul>
      <t>Changes in draft -05:
      </t>
      <ul spacing="normal">
        <li>No changes.</li>
      </ul>
      <t>Changes in draft -04:
      </t>
      <ul spacing="normal">
        <li>Discussion of layered codecs.</li>
        <li>Discussion of RTX.</li>
        <li>Clarified implementation requirements.</li>
        <li>FlexFEC MUST -&gt; SHOULD.</li>
        <li>Clarified AMR max-red handling.</li>
        <li>Updated references.</li>
      </ul>
      <t>Changes in draft -03:
      </t>
      <ul spacing="normal">
        <li>Added overhead stats for Opus.</li>
        <li>Expanded discussion of multi-packet FEC for Opus.</li>
        <li>Added discussion of AMR/AMR-WB.</li>
        <li>Removed discussion of ssrc-group.</li>
        <li>Referenced the data channel doc.</li>
        <li>Referenced the RTP/RTCP RFC.</li>
        <li>Several small edits based on feedback from Magnus.</li>
      </ul>
      <t>Changes in draft -02:
      </t>
      <ul spacing="normal">
        <li>Expanded discussion of FEC-only m-lines, and how they should be
        handled in offers and answers.</li>
      </ul>
      <t>Changes in draft -01:
      </t>
      <ul spacing="normal">
        <li>Tweaked abstract/intro text that was ambiguously normative.</li>
        <li>Removed text on FEC for Opus in CELT mode.</li>
        <li>Changed RFC 2198 recommendation for PCMU to be MAY instead of NOT
        RECOMMENDED, based on list feedback.</li>
        <li>Explicitly called out application data as something not addressed in
        this document.</li>
        <li>Updated flexible-fec reference.</li>
      </ul>
      <t>Changes in draft -00:
      </t>
      <ul spacing="normal">
        <li>Initial version, from sidebar conversation at IETF 90.</li>
      </ul>
    </section>
  </back>
</rfc>
