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)                          V. Singh
Request for Comments: 8451                                  callstats.io
Category: Informational                                         R. Huang
ISSN: 2070-1721                                                  R. Even
                                                                  Huawei
                                                            D. Romascanu
                                                              Individual
                                                                 L. Deng
                                                            China Mobile
                                                          September 2018
        <span class="h1">Considerations for Selecting RTP Control Protocol (RTCP)</span>
       <span class="h1">Extended Report (XR) Metrics for the WebRTC Statistics API</span>
Abstract
   This document describes monitoring features related to media streams
   in Web real-time communication (WebRTC).  It provides a list of RTP
   Control Protocol (RTCP) Sender Report (SR), Receiver Report (RR), and
   Extended Report (XR) metrics, which may need to be supported by RTP
   implementations in some diverse environments.  It lists a set of
   identifiers for the WebRTC's statistics API.  These identifiers are a
   set of RTCP SR, RR, and XR metrics related to the transport of
   multimedia flows.
Status of This Memo
   This document is not an Internet Standards Track specification; it is
   published for informational purposes.
   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).  Not all documents
   approved by the IESG are a candidate for any level of Internet
   Standard; see <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
   Information about the current status of this document, any errata,
   and how to provide feedback on it may be obtained at
   <a href="https://www.rfc-editor.org/info/rfc8451">https://www.rfc-editor.org/info/rfc8451</a>.
<span class="grey">Singh, et al.                 Informational                     [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
Copyright Notice
   Copyright (c) 2018 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="https://trustee.ietf.org/license-info">https://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">Singh, et al.                 Informational                     [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
Table of Contents
   <a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
   <a href="#section-2">2</a>. Terminology .....................................................<a href="#page-4">4</a>
   <a href="#section-3">3</a>. RTP Statistics in WebRTC Implementations ........................<a href="#page-5">5</a>
   <a href="#section-4">4</a>. Considerations for Impact of Measurement Interval ...............<a href="#page-5">5</a>
   <a href="#section-5">5</a>. Candidate Metrics ...............................................<a href="#page-6">6</a>
      <a href="#section-5.1">5.1</a>. Network Impact Metrics .....................................<a href="#page-6">6</a>
           <a href="#section-5.1.1">5.1.1</a>. Loss and Discard Packet Count Metric ................<a href="#page-6">6</a>
           <a href="#section-5.1.2">5.1.2</a>. Burst/Gap Pattern Metrics for Loss and Discard ......<a href="#page-7">7</a>
           <a href="#section-5.1.3">5.1.3</a>. Run-Length Encoded Metrics for Loss and Discard .....<a href="#page-8">8</a>
      <a href="#section-5.2">5.2</a>. Application Impact Metrics .................................<a href="#page-8">8</a>
           <a href="#section-5.2.1">5.2.1</a>. Discarded Octets Metric .............................<a href="#page-8">8</a>
           <a href="#section-5.2.2">5.2.2</a>. Frame Impairment Summary Metrics ....................<a href="#page-9">9</a>
           <a href="#section-5.2.3">5.2.3</a>. Jitter Buffer Metrics ...............................<a href="#page-9">9</a>
      <a href="#section-5.3">5.3</a>. Recovery Metrics ..........................................<a href="#page-10">10</a>
           <a href="#section-5.3.1">5.3.1</a>. Post-Repair Packet Count Metrics ...................<a href="#page-10">10</a>
           <a href="#section-5.3.2">5.3.2</a>. Run-Length Encoded Metric for Post-Repair ..........<a href="#page-10">10</a>
   <a href="#section-6">6</a>. Identifiers from Sender, Receiver, and Extended Report Blocks ..11
      <a href="#section-6.1">6.1</a>. Cumulative Number of Packets and Octets Sent ..............<a href="#page-11">11</a>
      <a href="#section-6.2">6.2</a>. Cumulative Number of Packets and Octets Received ..........<a href="#page-11">11</a>
      <a href="#section-6.3">6.3</a>. Cumulative Number of Packets Lost .........................<a href="#page-11">11</a>
      <a href="#section-6.4">6.4</a>. Interval Packet Loss and Jitter ...........................<a href="#page-12">12</a>
      <a href="#section-6.5">6.5</a>. Cumulative Number of Packets and Octets Discarded .........<a href="#page-12">12</a>
      <a href="#section-6.6">6.6</a>. Cumulative Number of Packets Repaired .....................<a href="#page-12">12</a>
      <a href="#section-6.7">6.7</a>. Burst Packet Loss and Burst Discards ......................<a href="#page-12">12</a>
      <a href="#section-6.8">6.8</a>. Burst/Gap Rates ...........................................<a href="#page-13">13</a>
      <a href="#section-6.9">6.9</a>. Frame Impairment Metrics ..................................<a href="#page-13">13</a>
   <a href="#section-7">7</a>. Adding New Metrics to WebRTC Statistics API ....................<a href="#page-13">13</a>
   <a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-14">14</a>
   <a href="#section-9">9</a>. IANA Considerations ............................................<a href="#page-14">14</a>
   <a href="#section-10">10</a>. References ....................................................<a href="#page-14">14</a>
      <a href="#section-10.1">10.1</a>. Normative References .....................................<a href="#page-14">14</a>
      <a href="#section-10.2">10.2</a>. Informative References ...................................<a href="#page-16">16</a>
   Acknowledgements ..................................................<a href="#page-17">17</a>
   Authors' Addresses ................................................<a href="#page-18">18</a>
<span class="grey">Singh, et al.                 Informational                     [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>.  Introduction</span>
   Web real-time communication (WebRTC) [<a href="#ref-WebRTC-Overview">WebRTC-Overview</a>] deployments
   are emerging, and applications need to be able to estimate the
   service quality.  If sufficient information (metrics or statistics)
   is provided to the application, it can attempt to improve the media
   quality.  [<a href="./rfc7478" title=""Web Real- Time Communication Use Cases and Requirements"">RFC7478</a>] specifies a requirement for statistics:
   F38   The browser must be able to collect statistics, related to the
         transport of audio and video between peers, needed to estimate
         quality of experience.
   The WebRTC Stats API [<a href="#ref-W3C.webrtc-stats">W3C.webrtc-stats</a>] currently lists metrics
   reported in the RTCP Sender Report and Receiver Report (SR/RR)
   [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] to fulfill this requirement.  However, the basic metrics
   from RTCP SR/RR are not sufficient for precise quality monitoring or
   diagnosing potential issues.
   Standards such as "RTP Control Protocol Extended Reports (RTCP XR)"
   [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] as well as other extensions standardized in the XRBLOCK
   Working Group, e.g., burst/gap loss metric reporting [<a href="./rfc6958" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Loss Metric Reporting"">RFC6958</a>] and
   burst/gap discard metric reporting [<a href="./rfc7003" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Discard Metric Reporting"">RFC7003</a>], have been produced for
   the purpose of collecting and reporting performance metrics from RTP
   endpoint devices that can be used to have end-to-end service
   visibility and to measure the delivery quality in various RTP
   services.  These metrics are able to complement those in [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>].
   In this document, we provide rationale for choosing additional RTP
   metrics for the WebRTC getStats() API [<a href="#ref-W3C.webrtc">W3C.webrtc</a>].  All identifiers
   proposed in this document are recommended to be implemented by an
   WebRTC endpoint.  An endpoint may choose not to expose an identifier
   if it does not implement the corresponding RTCP Report.  This
   document only considers RTP-layer metrics.  Other metrics, e.g.,
   IP-layer metrics, are out of scope.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>.  Terminology</span>
   In addition to the terminology from [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>], [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>], and
   [<a href="./rfc7478" title=""Web Real- Time Communication Use Cases and Requirements"">RFC7478</a>], this document uses the following term.
   ReportGroup: It is a set of metrics identified by a common
      synchronization source (SSRC).
<span class="grey">Singh, et al.                 Informational                     [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>.  RTP Statistics in WebRTC Implementations</span>
   The RTCP Sender Reports (SRs) and Receiver Reports (RRs) [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]
   expose the basic metrics for the local and remote media streams.
   However, these metrics provide only partial or limited information,
   which may not be sufficient for diagnosing problems or monitoring
   quality.  For example, it may be useful to distinguish between
   packets lost and packets discarded due to late arrival.  Even though
   they have the same impact on the multimedia quality, it helps in
   identifying and diagnosing problems.  RTP Control Protocol Extended
   Reports (XRs) [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] and other extensions discussed in the XRBLOCK
   Working Group provide more detailed statistics, which complement the
   basic metrics reported in the RTCP SR and RRs.
   The WebRTC application extracts statistics from the browser by
   querying the getStats() API [<a href="#ref-W3C.webrtc">W3C.webrtc</a>].  The browser can easily
   report the local variables, i.e., the statistics related to the
   outgoing and incoming RTP media streams.  However, without the
   support of RTCP XRs or some other signaling mechanism, the WebRTC
   application cannot expose the remote endpoints' statistics.
   [<a href="#ref-WebRTC-RTP-USAGE">WebRTC-RTP-USAGE</a>] does not mandate the use of any RTCP XRs, and
   their usage is optional.  If the use of RTCP XRs is successfully
   negotiated between endpoints (via SDP), thereafter the application
   has access to both local and remote statistics.  Alternatively, once
   the WebRTC application gets the local information, it can report the
   information to an application server or a third-party monitoring
   system, which provides quality estimates or diagnostic services for
   application developers.  The exchange of statistics between endpoints
   or between a monitoring server and an endpoint is outside the scope
   of this document.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>.  Considerations for Impact of Measurement Interval</span>
   RTCP extensions like RTCP XR usually share the same timing interval
   with the RTCP SR/RR, i.e., they are sent as compound packets,
   together with the RTCP SR/RR.  Alternatively, if the RTCP XR uses a
   different measurement interval, all XRs using the same measurement
   interval are compounded together, and the measurement interval is
   indicated in a specific measurement information block defined in
   [<a href="./rfc6776" title=""Measurement Identity and Information Reporting Using a Source Description (SDES) Item and an RTCP Extended Report (XR) Block"">RFC6776</a>].
   When using WebRTC getStats() APIs (see "Statistics Model" in
   [<a href="#ref-W3C.webrtc">W3C.webrtc</a>]), the applications can query this information at
   arbitrary intervals.  For the statistics reported by the remote
   endpoint, e.g., those conveyed in an RTCP SR/RR/XR, these will not
   change until the next RTCP report is received.  However, statistics
   generated by the local endpoint have no such restrictions as long as
   the endpoint is sending and receiving media.  For example, an
<span class="grey">Singh, et al.                 Informational                     [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   application may choose to poll the stack for statistics every 1
   second.  In that case, the underlying stack local will return the
   current snapshot of the local statistics (for incoming and outgoing
   media streams).  However, it may return the same remote statistics as
   previously, because no new RTCP reports may have been received in the
   past 1 second.  This can occur when the polling interval is shorter
   than the average RTCP reporting interval.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>.  Candidate Metrics</span>
   Since the following metrics are all defined in RTCP XR, which is not
   mandated in WebRTC, all of them are local.  However, if RTCP XR is
   supported by negotiation between two browsers, the following metrics
   can also be generated remotely and be sent to the local endpoint
   (that generated the media) via RTCP XR packets.
   The metrics are classified into 3 categories as follows: network
   impact metrics, application impact metrics, and recovery metrics.
   Network impact metrics are the statistics recording the information
   only for network transmission.  They are useful for network problem
   diagnosis.  Application impact metrics mainly collect the information
   from the viewpoint of the application, e.g., bit rate, frame rate, or
   jitter buffers.  Recovery metrics reflect how well the repair
   mechanisms perform, e.g., loss concealment, retransmission, or
   Forward Error Correction (FEC).  All 3 types of metrics are useful
   for quality estimations of services in WebRTC implementations.
   WebRTC applications can use these metrics to calculate the estimated
   Mean Opinion Score (MOS) [<a href="#ref-ITU-T_P.800.1">ITU-T_P.800.1</a>] values or Media Delivery
   Index (MDI) [<a href="./rfc4445" title=""A Proposed Media Delivery Index (MDI)"">RFC4445</a>] for their services.
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>.  Network Impact Metrics</span>
<span class="h4"><a class="selflink" id="section-5.1.1" href="#section-5.1.1">5.1.1</a>.  Loss and Discard Packet Count Metric</span>
   In multimedia transport, packets that are received abnormally are
   classified into 3 types: lost, discarded, and duplicate packets.
   Packet loss may be caused by network device breakdown, bit-error
   corruption, or network congestion (packets dropped by an intermediate
   router queue).  Duplicate packets may be a result of network delays
   that cause the sender to retransmit the original packets.  Discarded
   packets are packets that have been delayed long enough (perhaps they
   missed the playout time) and are considered useless by the receiver.
   Lost and discarded packets cause problems for multimedia services, as
   missing data and long delays can cause degradation in service
   quality, e.g., missing large blocks of contiguous packets (lost or
   discarded) may cause choppy audio, and long network transmission
   delay time may cause audio or video buffering.  The RTCP SR/RR
   defines a metric for counting the total number of RTP data packets
<span class="grey">Singh, et al.                 Informational                     [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   that have been lost since the beginning of reception.  However, this
   statistic does not distinguish lost packets from discarded and
   duplicate packets.  Packets that arrive late will be discarded and
   are not reported as lost, and duplicate packets will be regarded as a
   normally received packet.  Hence, the loss metric can be misleading
   if many duplicate packets are received or packets are discarded,
   which causes the quality of the media transport to appear okay from a
   statistical point of view, while the users are actually experiencing
   bad service quality.  So, in such cases, it is better to use more
   accurate metrics in addition to those defined in RTCP SR/RR.
   The metrics for lost packets and duplicated packets defined in the
   Statistics Summary Report Block of [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] extend the information
   of loss carried in standard RTCP SR/RR.  They explicitly give an
   account of lost and duplicated packets.  Lost packet counts are
   useful for network problem diagnosis.  It is better to use the packet
   loss metrics of [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] to indicate the lost packet count instead
   of the cumulative number of packets lost metric of [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>].
   Duplicated packets are usually rare and have little effect on QoS
   evaluation.  So it may not be suitable for use in WebRTC.
   Using loss metrics without considering discard metrics may result in
   inaccurate quality evaluation, as packet discard due to jitter is
   often more prevalent than packet loss in modern IP networks.  The
   discarded metric specified in [<a href="./rfc7002" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Discard Count Metric Reporting"">RFC7002</a>] counts the number of packets
   discarded due to jitter.  It augments the loss statistics metrics
   specified in standard RTCP SR/RR.  For those WebRTC services with
   jitter buffers requiring precise quality evaluation and accurate
   troubleshooting, this metric is useful as a complement to the metrics
   of RTCP SR/RR.
<span class="h4"><a class="selflink" id="section-5.1.2" href="#section-5.1.2">5.1.2</a>.  Burst/Gap Pattern Metrics for Loss and Discard</span>
   RTCP SR/RR defines coarse metrics regarding loss statistics: the
   metrics are all about per-call statistics and are not detailed enough
   to capture the transitory nature of some impairments like bursty
   packet loss.  Even if the average packet loss rate is low, the lost
   packets may occur during short dense periods, resulting in short
   periods of degraded quality.  Bursts cause lower quality experience
   than the non-bursts for low packet loss rates, whereas for high
   packet loss rates, the converse is true.  So capturing burst gap
   information is very helpful for quality evaluation and locating
   impairments.  If the WebRTC application needs to evaluate the service
   quality, burst gap metrics provide more accurate information than
   RTCP SR/RR.
<span class="grey">Singh, et al.                 Informational                     [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   [<a id="ref-RFC3611">RFC3611</a>] introduces burst gap metrics in the VoIP Report Block.
   These metrics record the density and duration of burst and gap
   periods, which are helpful in isolating network problems since bursts
   correspond to periods of time during which the packet loss/discard
   rate is high enough to produce noticeable degradation in audio or
   video quality.  Metrics related to the burst gap are also introduced
   in [<a href="./rfc7003" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Discard Metric Reporting"">RFC7003</a>] and [<a href="./rfc6958" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Loss Metric Reporting"">RFC6958</a>], which define two new report blocks for
   use in a range of RTP applications beyond those described in
   [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>].  These metrics distinguish discarded packets from loss
   packets that occur in the burst period and provide more information
   for diagnosing network problems.  Additionally, the block reports the
   frequency of burst events, which is useful information for evaluating
   the quality of experience.  Hence, if WebRTC applications need to do
   quality evaluation and observe when and why quality degrades, these
   metrics should be considered.
<span class="h4"><a class="selflink" id="section-5.1.3" href="#section-5.1.3">5.1.3</a>.  Run-Length Encoded Metrics for Loss and Discard</span>
   Run-length encoding uses a bit vector to encode information about the
   packet.  Each bit in the vector represents a packet; depending on the
   signaled metric, it defines if the packet was lost, duplicated,
   discarded, or repaired.  An endpoint typically uses the run-length
   encoding to accurately communicate the status of each packet in the
   interval to the other endpoint.  [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] and [<a href="./rfc7097" title=""RTP Control Protocol (RTCP) Extended Report (XR) for RLE of Discarded Packets"">RFC7097</a>] define run-
   length encoding for lost and duplicate packets, and discarded
   packets, respectively.
   The WebRTC application could benefit from the additional information.
   If losses occur after discards, an endpoint may be able to correlate
   the two run length vectors to identify congestion-related losses,
   e.g., a router queue became overloaded causing delays and then
   overflowed.  If the losses are independent, it may indicate bit-error
   corruption.  For the WebRTC Stats API [<a href="#ref-W3C.webrtc-stats">W3C.webrtc-stats</a>], these types
   of metrics are not recommended for use due to the large amount of
   data and the computation involved.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>.  Application Impact Metrics</span>
<span class="h4"><a class="selflink" id="section-5.2.1" href="#section-5.2.1">5.2.1</a>.  Discarded Octets Metric</span>
   The metric reports the cumulative size of the packets discarded in
   the interval.  It is complementary to the number of discarded
   packets.  An application measures sent octets and received octets to
   calculate the sending rate and receiving rate, respectively.  The
   application can calculate the actual bit rate in a particular
   interval by subtracting the discarded octets from the received
   octets.
<span class="grey">Singh, et al.                 Informational                     [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   For WebRTC, the discarded octets metric supplements the metrics on
   sent and received octets and provides an accurate method for
   calculating the actual bit rate, which is an important parameter to
   reflect the quality of the media.  The Bytes Discarded metric is
   defined in [<a href="./rfc7243" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for the Bytes Discarded Metric"">RFC7243</a>].
<span class="h4"><a class="selflink" id="section-5.2.2" href="#section-5.2.2">5.2.2</a>.  Frame Impairment Summary Metrics</span>
   RTP has different framing mechanisms for different payload types.
   For audio streams, a single RTP packet may contain one or multiple
   audio frames.  On the other hand, in video streams, a single video
   frame may be transmitted in multiple RTP packets.  The size of each
   packet is limited by the Maximum Transmission Unit (MTU) of the
   underlying network.  However, the statistics from standard SR/RR only
   collect information from the transport layer, so they may not fully
   reflect the quality observed by the application.  Video is typically
   encoded using two frame types, i.e., key frames and derived frames.
   Key frames are normally just spatially compressed, i.e., without
   prediction from other pictures.  The derived frames are temporally
   compressed, i.e., depend on the key frame for decoding.  Hence, key
   frames are much larger in size than derived frames.  The loss of
   these key frames results in a substantial reduction in video quality.
   Thus, it is reasonable to consider this application-layer information
   in WebRTC implementations, which influence sender strategies to
   mitigate the problem or require the accurate assessment of users'
   quality of experience.
   The metrics in this category include: number of discarded key frames,
   number of lost key frames, number of discarded derived frames, and
   number of lost derived frames.  These metrics can be used to
   calculate the Media Loss Rate (MLR) of the MDI [<a href="./rfc4445" title=""A Proposed Media Delivery Index (MDI)"">RFC4445</a>].  Details of
   the definition of these metrics are described in [<a href="./rfc7003" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for Burst/Gap Discard Metric Reporting"">RFC7003</a>].
   Additionally, the metric provides the rendered frame rate, an
   important parameter for quality estimation.
<span class="h4"><a class="selflink" id="section-5.2.3" href="#section-5.2.3">5.2.3</a>.  Jitter Buffer Metrics</span>
   The size of the jitter buffer affects the end-to-end delay on the
   network and also the packet discard rate.  When the buffer size is
   too small, late-arriving packets are not played out and are dropped,
   while when the buffer size is too large, packets are held longer than
   necessary and consequently reduce conversational quality.
   Measurement of jitter buffer should not be ignored in the evaluation
   of end-user perception of conversational quality.  Metrics related to
   the jitter buffer, such as maximum and nominal jitter buffer, could
   be used to show how the jitter buffer behaves at the receiving
   endpoint.  They are useful for providing better end-user quality of
   experience (QoE) when jitter buffer factors are used as inputs to
<span class="grey">Singh, et al.                 Informational                     [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   calculate estimated MOS values.  Thus, for those cases, jitter buffer
   metrics should be considered.  The definition of these metrics is
   provided in [<a href="./rfc7005" title=""RTP Control Protocol (RTCP) Extended Report (XR) Block for De-Jitter Buffer Metric Reporting"">RFC7005</a>].
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>.  Recovery Metrics</span>
   This document does not consider concealment metrics [<a href="./rfc7294" title=""RTP Control Protocol (RTCP) Extended Report (XR) Blocks for Concealment Metrics Reporting on Audio Applications"">RFC7294</a>] as part
   of recovery metrics.
<span class="h4"><a class="selflink" id="section-5.3.1" href="#section-5.3.1">5.3.1</a>.  Post-Repair Packet Count Metrics</span>
   Web applications can support certain RTP error-resilience mechanisms
   following the recommendations specified in [<a href="#ref-WebRTC-RTP-USAGE">WebRTC-RTP-USAGE</a>].  For
   these web applications using repair mechanisms, providing some
   statistics about the performance of their repair mechanisms could
   help provide a more accurate quality evaluation.
   The unrepaired packet count and repaired loss count defined in
   [<a href="./rfc7509" title=""RTP Control Protocol (RTCP) Extended Report (XR) for Post-Repair Loss Count Metrics"">RFC7509</a>] provide the recovery information of the error-resilience
   mechanisms to the monitoring application or the sending endpoint.
   The endpoint can use these metrics to ascertain the ratio of repaired
   packets to lost packets.  Including post-repair packet count metrics
   helps the application evaluate the effectiveness of the applied
   repair mechanisms.
<span class="h4"><a class="selflink" id="section-5.3.2" href="#section-5.3.2">5.3.2</a>.  Run-Length Encoded Metric for Post-Repair</span>
   [<a id="ref-RFC5725">RFC5725</a>] defines run-length encoding for post-repair packets.  When
   using error-resilience mechanisms, the endpoint can correlate the
   loss run length with this metric to ascertain where the losses and
   repairs occurred in the interval.  This provides more accurate
   information for recovery mechanisms evaluation than those in <a href="#section-5.3.1">Section</a>
   <a href="#section-5.3.1">5.3.1</a>.  However, when RTCP XR metrics are supported, using run-length
   encoded metrics is not suggested because the per-packet information
   yields an enormous amount of data that is not required in this case.
   For WebRTC, the application may benefit from the additional
   information.  If losses occur after discards, an endpoint may be able
   to correlate the two run-length vectors to identify congestion-
   related losses, e.g., a router queue became overloaded causing delays
   and then overflowed.  If the losses are independent, it may indicate
   bit-error corruption.  Lastly, when using error-resilience
   mechanisms, the endpoint can correlate the loss and post-repair run
   lengths to ascertain where the losses and repairs occurred in the
   interval.  For example, consecutive losses are likely not to be
   repaired by a simple FEC scheme.
<span class="grey">Singh, et al.                 Informational                    [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>.  Identifiers from Sender, Receiver, and Extended Report Blocks</span>
   This document describes a list of metrics and corresponding
   identifiers relevant to RTP media in WebRTC.  This group of
   identifiers are defined on a ReportGroup corresponding to a
   synchronization source (SSRC).  In practice, the application needs to
   be able to query the statistic identifiers on both an incoming
   (remote) and outgoing (local) media stream.  Since sending and
   receiving SRs and RRs are mandatory, the metrics defined in the SRs
   and RRs are always available.  For XR metrics, it depends on two
   factors: 1) if it is measured at the endpoint and 2) if it is
   reported by the endpoint in an XR block.  If a metric is only
   measured by the endpoint and not reported, the metrics will only be
   available for the incoming (remote) media stream.  Alternatively, if
   the corresponding metric is also reported in an XR block, it will be
   available for both the incoming (remote) and outgoing (local) media
   stream.
   For a remote statistic, the timestamp represents the timestamp from
   an incoming SR, RR, or XR packet.  Conversely, for a local statistic,
   it refers to the current timestamp generated by the local clock
   (typically the POSIX timestamp, i.e., milliseconds since January 1,
   1970).
   As per [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>], the octets metrics represent the payload size
   (i.e., not including the header or padding).
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>.  Cumulative Number of Packets and Octets Sent</span>
   Name: packetsSent
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
   Name: bytesSent
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>.  Cumulative Number of Packets and Octets Received</span>
   Name: packetsReceived
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
   Name: bytesReceived
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>.  Cumulative Number of Packets Lost</span>
   Name: packetsLost
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
<span class="grey">Singh, et al.                 Informational                    [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>.  Interval Packet Loss and Jitter</span>
   Name: jitter
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
   Name: fractionLost
   Definition: <a href="./rfc3550#section-6.4.1">Section 6.4.1 of [RFC3550]</a>.
<span class="h3"><a class="selflink" id="section-6.5" href="#section-6.5">6.5</a>.  Cumulative Number of Packets and Octets Discarded</span>
   Name: packetsDiscarded
   Definition: The cumulative number of RTP packets discarded due to
      late or early arrival; see item a of <a href="./rfc7002#appendix-A">Appendix A of [RFC7002]</a>.
   Name: bytesDiscarded
   Definition: The cumulative number of octets discarded due to late or
      early arrival; see <a href="./rfc7243#appendix-A">Appendix A of [RFC7243]</a>.
<span class="h3"><a class="selflink" id="section-6.6" href="#section-6.6">6.6</a>.  Cumulative Number of Packets Repaired</span>
   Name: packetsRepaired
   Definition: The cumulative number of lost RTP packets repaired after
      applying a error-resilience mechanism; see item b of <a href="./rfc7509#appendix-A">Appendix A of
      [RFC7509]</a>.  To clarify, the value is the upper bound on the
      cumulative number of lost packets.
<span class="h3"><a class="selflink" id="section-6.7" href="#section-6.7">6.7</a>.  Burst Packet Loss and Burst Discards</span>
   Name: burstPacketsLost
   Definition: The cumulative number of RTP packets lost during loss
      bursts; see item c of <a href="./rfc6958#appendix-A">Appendix A of [RFC6958]</a>.
   Name: burstLossCount
   Definition: The cumulative number of bursts of lost RTP packets; see
      item d of <a href="./rfc6958#appendix-A">Appendix A of [RFC6958]</a>.
   Name: burstPacketsDiscarded
   Definition: The cumulative number of RTP packets discarded during
      discard bursts; see item b of <a href="./rfc7003#appendix-A">Appendix A of [RFC7003]</a>.
   Name: burstDiscardCount
   Definition: The cumulative number of bursts of discarded RTP packets;
      see item e of <a href="./rfc8015#appendix-A">Appendix A of [RFC8015]</a>.
   [<a id="ref-RFC3611">RFC3611</a>] recommends a Gmin (threshold) value of 16 for classifying
   packet loss or discard burst.
<span class="grey">Singh, et al.                 Informational                    [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h3"><a class="selflink" id="section-6.8" href="#section-6.8">6.8</a>.  Burst/Gap Rates</span>
   Name: burstLossRate
   Definition: The fraction of RTP packets lost during bursts; see
      item a of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: gapLossRate
   Definition: The fraction of RTP packets lost during gaps; see item b
      of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: burstDiscardRate
   Definition: The fraction of RTP packets discarded during bursts; see
      item e of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: gapDiscardRate
   Definition: The fraction of RTP packets discarded during gaps; see
      item f of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
<span class="h3"><a class="selflink" id="section-6.9" href="#section-6.9">6.9</a>.  Frame Impairment Metrics</span>
   Name: framesLost
   Definition: The cumulative number of full frames lost; see item i of
      <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: framesCorrupted
   Definition: The cumulative number of frames partially lost; see
      item j of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: framesDropped
   Definition: The cumulative number of full frames discarded; see
      item g of <a href="./rfc7004#appendix-A">Appendix A of [RFC7004]</a>.
   Name: framesSent
   Definition: The cumulative number of frames sent.
   Name: framesReceived
   Definition: The cumulative number of partial or full frames received.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>.  Adding New Metrics to WebRTC Statistics API</span>
   While this document was being drafted, the metrics defined herein
   were added to the W3C WebRTC specification.  The process to add new
   metrics in the future is to create an issue or pull request on the
   repository of the W3C WebRTC specification
   (<a href="https://github.com/w3c/webrtc-stats">https://github.com/w3c/webrtc-stats</a>).
<span class="grey">Singh, et al.                 Informational                    [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>.  Security Considerations</span>
   This document focuses on listing the RTCP XR metrics defined in the
   corresponding RTCP reporting extensions and does not give rise to any
   security vulnerabilities beyond those described in [<a href="./rfc3611" title=""RTP Control Protocol Extended Reports (RTCP XR)"">RFC3611</a>] and
   [<a href="./rfc6792" title=""Guidelines for Use of the RTP Monitoring Framework"">RFC6792</a>].
   The overall security considerations for RTP used in WebRTC
   applications is described in [<a href="#ref-WebRTC-RTP-USAGE">WebRTC-RTP-USAGE</a>] and [<a href="#ref-WebRTC-Sec">WebRTC-Sec</a>],
   which also apply to this memo.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>.  IANA Considerations</span>
   This document has no IANA actions.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>.  References</span>
<span class="h3"><a class="selflink" id="section-10.1" href="#section-10.1">10.1</a>.  Normative References</span>
   [<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="https://www.rfc-editor.org/info/rfc3550">https://www.rfc-editor.org/info/rfc3550</a>>.
   [<a id="ref-RFC3611">RFC3611</a>]  Friedman, T., Ed., Caceres, R., Ed., and A. Clark, Ed.,
              "RTP Control Protocol Extended Reports (RTCP XR)",
              <a href="./rfc3611">RFC 3611</a>, DOI 10.17487/RFC3611, November 2003,
              <<a href="https://www.rfc-editor.org/info/rfc3611">https://www.rfc-editor.org/info/rfc3611</a>>.
   [<a id="ref-RFC5725">RFC5725</a>]  Begen, A., Hsu, D., and M. Lague, "Post-Repair Loss RLE
              Report Block Type for RTP Control Protocol (RTCP) Extended
              Reports (XRs)", <a href="./rfc5725">RFC 5725</a>, DOI 10.17487/RFC5725, February
              2010, <<a href="https://www.rfc-editor.org/info/rfc5725">https://www.rfc-editor.org/info/rfc5725</a>>.
   [<a id="ref-RFC6776">RFC6776</a>]  Clark, A. and Q. Wu, "Measurement Identity and Information
              Reporting Using a Source Description (SDES) Item and an
              RTCP Extended Report (XR) Block", <a href="./rfc6776">RFC 6776</a>,
              DOI 10.17487/RFC6776, October 2012,
              <<a href="https://www.rfc-editor.org/info/rfc6776">https://www.rfc-editor.org/info/rfc6776</a>>.
   [<a id="ref-RFC6792">RFC6792</a>]  Wu, Q., Ed., Hunt, G., and P. Arden, "Guidelines for Use
              of the RTP Monitoring Framework", <a href="./rfc6792">RFC 6792</a>,
              DOI 10.17487/RFC6792, November 2012,
              <<a href="https://www.rfc-editor.org/info/rfc6792">https://www.rfc-editor.org/info/rfc6792</a>>.
<span class="grey">Singh, et al.                 Informational                    [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   [<a id="ref-RFC6958">RFC6958</a>]  Clark, A., Zhang, S., Zhao, J., and Q. Wu, Ed., "RTP
              Control Protocol (RTCP) Extended Report (XR) Block for
              Burst/Gap Loss Metric Reporting", <a href="./rfc6958">RFC 6958</a>,
              DOI 10.17487/RFC6958, May 2013,
              <<a href="https://www.rfc-editor.org/info/rfc6958">https://www.rfc-editor.org/info/rfc6958</a>>.
   [<a id="ref-RFC7002">RFC7002</a>]  Clark, A., Zorn, G., and Q. Wu, "RTP Control Protocol
              (RTCP) Extended Report (XR) Block for Discard Count Metric
              Reporting", <a href="./rfc7002">RFC 7002</a>, DOI 10.17487/RFC7002, September
              2013, <<a href="https://www.rfc-editor.org/info/rfc7002">https://www.rfc-editor.org/info/rfc7002</a>>.
   [<a id="ref-RFC7003">RFC7003</a>]  Clark, A., Huang, R., and Q. Wu, Ed., "RTP Control
              Protocol (RTCP) Extended Report (XR) Block for Burst/Gap
              Discard Metric Reporting", <a href="./rfc7003">RFC 7003</a>, DOI 10.17487/RFC7003,
              September 2013, <<a href="https://www.rfc-editor.org/info/rfc7003">https://www.rfc-editor.org/info/rfc7003</a>>.
   [<a id="ref-RFC7004">RFC7004</a>]  Zorn, G., Schott, R., Wu, Q., Ed., and R. Huang, "RTP
              Control Protocol (RTCP) Extended Report (XR) Blocks for
              Summary Statistics Metrics Reporting", <a href="./rfc7004">RFC 7004</a>,
              DOI 10.17487/RFC7004, September 2013,
              <<a href="https://www.rfc-editor.org/info/rfc7004">https://www.rfc-editor.org/info/rfc7004</a>>.
   [<a id="ref-RFC7005">RFC7005</a>]  Clark, A., Singh, V., and Q. Wu, "RTP Control Protocol
              (RTCP) Extended Report (XR) Block for De-Jitter Buffer
              Metric Reporting", <a href="./rfc7005">RFC 7005</a>, DOI 10.17487/RFC7005,
              September 2013, <<a href="http://www.rfc-editor.org/info/rfc7005">http://www.rfc-editor.org/info/rfc7005</a>>.
   [<a id="ref-RFC7097">RFC7097</a>]  Ott, J., Singh, V., Ed., and I. Curcio, "RTP Control
              Protocol (RTCP) Extended Report (XR) for RLE of Discarded
              Packets", <a href="./rfc7097">RFC 7097</a>, DOI 10.17487/RFC7097, January 2014,
              <<a href="http://www.rfc-editor.org/info/rfc7097">http://www.rfc-editor.org/info/rfc7097</a>>.
   [<a id="ref-RFC7243">RFC7243</a>]  Singh, V., Ed., Ott, J., and I. Curcio, "RTP Control
              Protocol (RTCP) Extended Report (XR) Block for the Bytes
              Discarded Metric", <a href="./rfc7243">RFC 7243</a>, DOI 10.17487/RFC7243, May
              2014, <<a href="http://www.rfc-editor.org/info/rfc7243">http://www.rfc-editor.org/info/rfc7243</a>>.
   [<a id="ref-RFC7509">RFC7509</a>]  Huang, R. and V. Singh, "RTP Control Protocol (RTCP)
              Extended Report (XR) for Post-Repair Loss Count Metrics",
              <a href="./rfc7509">RFC 7509</a>, DOI 10.17487/RFC7509, May 2015,
              <<a href="http://www.rfc-editor.org/info/rfc7509">http://www.rfc-editor.org/info/rfc7509</a>>.
   [<a id="ref-RFC8015">RFC8015</a>]  Singh, V., Perkins, C., Clark, A., and R. Huang, "RTP
              Control Protocol (RTCP) Extended Report (XR) Block for
              Independent Reporting of Burst/Gap Discard Metrics",
              <a href="./rfc8015">RFC 8015</a>, DOI 10.17487/RFC8015, November 2016,
              <<a href="http://www.rfc-editor.org/info/rfc8015">http://www.rfc-editor.org/info/rfc8015</a>>.
<span class="grey">Singh, et al.                 Informational                    [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
<span class="h3"><a class="selflink" id="section-10.2" href="#section-10.2">10.2</a>.  Informative References</span>
   [<a id="ref-ITU-T_P.800.1">ITU-T_P.800.1</a>]
              ITU-T, "Mean Opinion Score (MOS) terminology", ITU-T
              P.800.1, July 2016,
              <<a href="https://www.itu.int/rec/T-REC-P.800.1-201607-I">https://www.itu.int/rec/T-REC-P.800.1-201607-I</a>>.
   [<a id="ref-RFC4445">RFC4445</a>]  Welch, J. and J. Clark, "A Proposed Media Delivery Index
              (MDI)", <a href="./rfc4445">RFC 4445</a>, DOI 10.17487/RFC4445, April 2006,
              <<a href="https://www.rfc-editor.org/info/rfc4445">https://www.rfc-editor.org/info/rfc4445</a>>.
   [<a id="ref-WebRTC-Overview">WebRTC-Overview</a>]
              Alverstrand, H., "Overview: Real Time Protocols for
              Browser-based Applications", Work in Progress,
              <a href="./draft-ietf-rtcweb-overview-19">draft-ietf-rtcweb-overview-19</a>, November 2017.
   [<a id="ref-WebRTC-RTP-USAGE">WebRTC-RTP-USAGE</a>]
              Perkins, C., Westerlund, M., and J. Ott, "Web Real-Time
              Communication (WebRTC): Media Transport and Use of RTP",
              Work in Progress, <a href="./draft-ietf-rtcweb-rtp-usage-26">draft-ietf-rtcweb-rtp-usage-26</a>, March
              2016.
   [<a id="ref-WebRTC-Sec">WebRTC-Sec</a>]
              Rescorla, E., <a style="text-decoration: none" href='https://www.google.com/search?sitesearch=datatracker.ietf.org%2Fdoc%2Fhtml%2F&q=inurl:draft-+%22Security+Considerations+for+WebRTC%22'>"Security Considerations for WebRTC"</a>, Work
              in Progress, <a href="./draft-ietf-rtcweb-security-10">draft-ietf-rtcweb-security-10</a>, January 2018.
   [<a id="ref-RFC7294">RFC7294</a>]  Clark, A., Zorn, G., Bi, C., and Q. Wu, "RTP Control
              Protocol (RTCP) Extended Report (XR) Blocks for
              Concealment Metrics Reporting on Audio Applications",
              <a href="./rfc7294">RFC 7294</a>, DOI 10.17487/RFC7294, July 2014,
              <<a href="https://www.rfc-editor.org/info/rfc7294">https://www.rfc-editor.org/info/rfc7294</a>>.
   [<a id="ref-RFC7478">RFC7478</a>]  Holmberg, C., Hakansson, S., and G. Eriksson, "Web Real-
              Time Communication Use Cases and Requirements", <a href="./rfc7478">RFC 7478</a>,
              DOI 10.17487/RFC7478, March 2015,
              <<a href="https://www.rfc-editor.org/info/rfc7478">https://www.rfc-editor.org/info/rfc7478</a>>.
   [<a id="ref-W3C.webrtc">W3C.webrtc</a>]
              Bergkvist, A., Burnett, C., Jennings, C., Narayanan, A.,
              Aboba, B., Brandstetter, T., and J. Bruaroey, "WebRTC 1.0:
              Real-time Communication Between Browsers", W3C Candidate
              Recommendation, June 2018,
              <<a href="https://www.w3.org/TR/2018/CR-webrtc-20180621/">https://www.w3.org/TR/2018/CR-webrtc-20180621/</a>>.
              Latest version available at
              <<a href="https://www.w3.org/TR/webrtc/">https://www.w3.org/TR/webrtc/</a>>.
<span class="grey">Singh, et al.                 Informational                    [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
   [<a id="ref-W3C.webrtc-stats">W3C.webrtc-stats</a>]
              Alvestrand, H. and V. Singh, "Identifiers for WebRTC's
              Statistics API", W3C Candidate Recommendation, July 2018,
              <<a href="https://www.w3.org/TR/2018/CR-webrtc-stats-20180703/">https://www.w3.org/TR/2018/CR-webrtc-stats-20180703/</a>>.
              Latest version available at
              <<a href="https://www.w3.org/TR/webrtc-stats/">https://www.w3.org/TR/webrtc-stats/</a>>.
Acknowledgements
   The authors would like to thank Bernard Aboba, Harald Alvestrand, Al
   Morton, Colin Perkins, and Shida Schubert for their valuable comments
   and suggestions on earlier draft versions of this document.
<span class="grey">Singh, et al.                 Informational                    [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8451">RFC 8451</a>               RTCP XR Metrics for WebRTC         September 2018</span>
Authors' Addresses
   Varun Singh
   CALLSTATS I/O Oy
   Annankatu 31-33 C 42
   Helsinki  00100
   Finland
   Email: varun@callstats.io
   URI:   <a href="https://www.callstats.io/about">https://www.callstats.io/about</a>
   Rachel Huang
   Huawei
   101 Software Avenue, Yuhua District
   Nanjing  210012
   China
   Email: rachel.huang@huawei.com
   Roni Even
   Huawei
   14 David Hamelech
   Tel Aviv  64953
   Israel
   Email: roni.even@huawei.com
   Dan Romascanu
   Email: dromasca@gmail.com
   Lingli Deng
   China Mobile
   Email: denglingli@chinamobile.com
Singh, et al.                 Informational                    [Page 18]
</pre>
 
     |