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 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
|
Debugging WebRTC Calls
======================
.. _reporting_webrtc_call_issues:
Reporting WebRTC Call Issues
----------------------------
The best way to report an issue is through Bugzilla using this
`link <https://bugzilla.mozilla.org/enter_bug.cgi?product=Core&component=WebRTC>`__.
Describe the issue you've run into, include a URL, along with the
details of the call setup. See the :ref:`adding-call-setup-information`
section for helpful templates. Here are some common examples of descriptive
WebRTC bug summaries:
* caller is experiencing frozen video, screen capture, or desktop capture
* caller does not hear audio
* caller's voice sounds distorted or robotic
* video resolution is lower than expected
* caller's video appears rotated
* there is significant delay between a caller's video and audio
* camera, microphone, or screens are not appearing in the Firefox device access
permission prompts, etc.
* caller's video is garbled, partially missing, or the colors are incorrect
* caller can not share external display, but can share integrated display
.. note::
Not all web conferencing software makes extensive use of WebRTC.
For simple issues, the first place to look is to check the
`web developer console </devtools-user/web_console>`__ for error messages
related to media format issues. If you see messages here related to WebRTC,
getUserMedia, or getDisplayMedia, please add this information to your bug.
.. _adding-call-setup-information:
Adding Call Setup Information
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following template can help one provide all the call details needed to
diagnose many common issues.
.. code:: md
* Does this problem occur in Firefox for Desktop or Android?
* Is this problem reproducible in Firefox Nightly?
* Has this worked previously?
* Have you tried using `about:profiles` to reproduce the problem in a
clean profile?
* How many participants were in the call?
* In which web conferencing or web calling services does the problem occur?
* Does the problem present itself immediately upon starting the call?
* If not how long does it take to occur?
* If this is a problem with audio or video capture, what camera or microphone
are you using? (adding about:support text may be helpful)
* If this is problem with screen capture, which screen was being captured,
and are there other screens attached to the same machine?
* Would you be willing to help us find a regression range?
If the issue is of specification compliance the template provided below may be
more useful. If one is unsure if this is a compliance issue, one can refer to
the :ref:`standards-documentation` section for links.
.. code:: md
* What unexpected behavior is being observed? What are the steps to reproduce
this issue?
* What is the expected behavior?
* Where is this behavior specified?
* Is this problem reproducible in Nightly?
* Have you tried using `about:profiles` to reproduce the problem in a clean
profile?
* Has this worked previously?
* If so, would you be willing to help us find a regression range?
.. _share_your_aboutsupport_text:
Adding about:support Text
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In your Bugzilla report, please include support information about the
current device on which you are experiencing an issue.
#. Open a tab and visit about:support
#. Click 'Copy Text to Clipboard'
#. Paste this text in your Bugzilla bug comment and post.
.. note::
To open :code:`about:*` links in Firefox one must do the following:
#. Right-click the link and select `Open Link in New Tab`
#. Select the new tab
#. Click inside the address bar which should contain the about URL
#. Press Enter
.. _share_your_aboutwebrtc_contents:
Adding about:webrtc RTCPeerConnection Stats
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#. Open about:webrtc.
#. Expand the RTCPeerConnection section.
#. Locate and expand the subsection RTCPeerConnection that one wishes to copy
stats from.
#. Press the :code:`Copy Stats Report`
#. In the Bugzilla bug, press the :code:`Attach New File` button.
#. Click inside the large text box labeled :code:`File`, and paste the copied
stats report.
#. Add a descriptive label to the the :code:`Description:`, e.g.
"PeerConnection statistics sample taken during period of frame loss".
#. In the drop down box, next to the :code:`select from list` radio option,
select "JSON source (application/json)".
#. If needed, add a descriptive comment to the :code:`comment` field.
#. Press the :code:`Submit` button.
.. note::
Hovering the mouse over some headings will reveal a clipboard icon. Clicking
this icon will copy the contents under that section to the clipboard as a
JSON document. This can be useful if one wants to submit a portion of the
available stats. Of particular note are the :code:`RTP Stats` heading whose
button will copy the latests RTP stats, and the :code:`SDP` section whose
button will copy the SDP offer; answer; and roles.
Adding Your about:webrtc Contents
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For issues with call quality, please share web conferencing related
performance information by providing your about:webrtc information. Note
this information should be collected while the call in question is still
active.
#. While your call is still ongoing, open an additional tab and visit
about:webrtc.
#. Click "Clear History" to clear the stats from other recent calls
which are no longer ongoing.
#. At the bottom of the page click 'Save Page', and save this file.
#. Add this file as an attachment to your bug.
This data contains statistics about your call, the signalling that was
used to setup your call, and information about the network transports.
.. _diagnosing_call_quality_issues:
Diagnosing Call Quality Issues
------------------------------
.. _about_webrtc_overview:
about:webrtc Overview
~~~~~~~~~~~~~~~~~~~~~
about:webrtc is an in-browser resource for debugging WebRTC calls. The
primary audience for about:webrtc is browser developers but it can also be
of use to anyone that needs to troubleshoot a WebRTC call. When there is no
call data to display, about:webrtc will appear as follows:
.. figure:: img/about_webrtc_default_view.png
:alt: about:webrtc before any calls have been made
about:webrtc before any calls have been made
Note that there are several sections. During a call each section will contain
information pertinent to different aspects of the WebRTC browser implementation.
RTCPeerConnection Statistics
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This section presents information useful for diagnosing active calls. It
contains RTCPeerConnection creation parameters, connection information,
negotiation details, RTP stream statistics, bandwidth statistics, and
output frame statistics.
Connection Log
^^^^^^^^^^^^^^
When one needs to diagnose issues with the underlying transports, logs
can be found under Connection Log.
User Modified WebRTC Configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
This section will display any user modified preferences which effect the
performance or behavior of browser components which can impact WebRTC calls.
When hovering over a preference path displayed in this section a clipboard
icon will appear. Clicking that icon will copy the path to the clipboard. It
can then be pasted into `about:config <about:config>`__, to change or reset the
value to its default.
.. warning::
Unexpected values in this section may be caused by installed extensions. It
is best to test issues in a clean profile when possible using
`about:profiles <about:profiles>`__.
Media Context
^^^^^^^^^^^^^
Information that is gathered to determine Codec availability and capability is
recorded under Media Context.
Bottom Control Bar
^^^^^^^^^^^^^^^^^^
At the bottom of about:webrtc is a row of buttons which allow the user to
perform miscellaneous actions.
The `Save Page` button expands all the sections and presents a dialog to save
the contents of the page. This will produce an HTML file suitable for attaching
to bug reports.
In the event of a WebRTC issue, the :code:`Enable WebRTC Log Preset` button is a very
quick way to start logging. Pressing that button will open a new tab with
`about:logging <about:logging>`__ with the :code:`webrtc` preset selected. This
preset contains all :ref:`standard-logging-modules`. Logging
will begin immediately. If one needs to change other log settings on that page
one can customize them, and then press :code:`Start Logging`. This may be
necessary if one wishes to log to the profiler.
If experiencing echo cancellation issues, one may be asked to submit echo
cancellation logs. These logs are gathered by pressing the
:code:`Start AEC Logging` button. One should press the button to activate
the logging while actively experiencing an echo cancellation failure.
.. note::
Producing echo cancellation logs is incompatible with the content sandbox.
The user will be prompted with further instructions if the sandbox is active
and the :code:`Start AEC Logging` button is pressed.
.. _audiovideo_delay:
Audio/Video Delay
^^^^^^^^^^^^^^^^^
Delayed media is commonly caused by long physical paths between
endpoints, though anything that slows down inter-hop delivery of packets
can be at fault. Note that this is different than the bandwidth of the
network path, and a high latency will not be fixed by reducing the video
resolution or audio sample rate. Round trip time, or RTT, is the time it
takes for a packet to get from the sender to the receiver and then for a
packet to get from the receiver back to the sender. If the path is
symmetric between the two endpoints one can assume that the one way
delay is half the delay of the round trip.
The second common cause of A/V delay is jitter, the magnitude of
variability in packet inter-arrival times. In order to smoothly play out
of the incoming stream a receiver experiencing jitter will have to
buffer (delay) incoming packets.
**Using** `about:webrtc <about:webrtc>`__ **to Diagnose Delay**
The key metrics in `about:webrtc <about:webrtc>`__ are RTT (round-trip-time) and
jitter. They can be found in the RTP stats section of the
PeerConnection. The PeerConnection informational blocks start out in a
minimized state, and one will need to expand a block to find the RTP
stats section:
.. figure:: img/about_webrtc_reveal_PeerConnection_stats.png
:alt: How to reveal the full statistics of a PeerConnection in about:webrtc
:width: 800px
How to reveal the full statistics of a PeerConnection in about:webrtc
Once expanded one can locate the RTP Stats section and find the key
diagnostic stats:
.. figure:: img/about_webrtc_Jitter_and_RTT.png
:alt: Location in about:webrtc of jitter and RTT stats
:width: 800px
Location in about:webrtc of jitter and RTT stats
In this image we can see that there are 0 milliseconds of jitter, and 32
milliseconds of round trip delay. This call should not be experiencing any
noticeable delay. See the `Delay Calculation <#delay-calculation>`__
appendix section below for some more detail.
If the perceived delay is larger than the estimated delay that could
indicate a problem within Firefox that requires debugging. Under these
circumstances it would be helpful to grab a JSON copy of the current
stats by pressing the "Copy Report" button, pasting those stats into
your Bugzilla bug report.
.. figure:: img/about_webrtc_copy_report.png
:alt: Location in about:webrtc of Copy Report button
:width: 800px
Location in about:webrtc of Copy Report button
.. _performance-profiling-and-logging:
Performance Profiling and Logging
---------------------------------
.. _capturing-a-firefox-performance-profile:
Capturing a Firefox Performance Profile
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
For basic performance issues, a performance profile can help engineers
diagnose issues with video formats, performance, and rendering.
#. Visit https://profiler.firefox.com/ and enable the Profiler toolbar
button.
#. Click the toolbar button down arrow and select 'Media' in the
Settings drop down.
#. Open a tab and visit the page with the affected media content.
#. Click the Profiler toolbar main button to start recording.
#. Play media until the issue you are seeing manifests.
#. Click the Profiler toolbar button again to stop recording.
#. When a new Profile tab opens, click the upload profile button on the
upper right.
#. Copy the resulting profile URL and post this to your Bugzilla report.
Additionally, detailed logging can be collected within performance
profiles to help aid in debugging complicated issues. To enable the
collection of a profile with low level debugging -
#. Visit https://profiler.firefox.com/ and enable the Profiler toolbar
button.
#. In a new tab, visit about:webrtc. Click the 'Enable WebRTC Log
Preset' button, which will open a tab for about:logging with
pre-populated information.
#. In about:logging, click the "Start Logging" button. (You are now
recording a profile, the profiler toolbar toggle button should be
selected automatically.)
#. Open a new tab for testing and view the media you are having an issue
with. (After reproducing, DO NOT close this test tab yet.)
#. Switch to the about:logging tab, click 'Stop logging', and then close
the test tab.
#. Wait approximately 10 - 20 seconds for a new tab to automatically
open containing the generated performance profile.
#. Within the upper-right side of the profiler tab click the 'upload
local profile' button to initiate profile upload. Once the upload is
complete, a drop down text field will open displaying the URL of the
profile. Select this text and copy it.
#. Share the URL of the profile for analysis with the engineer you are
working with.
Alternatively one can set the following environment variable:
.. code:: sh
MOZ_LOG="jsep:5,sdp:5,signaling:5,mtransport:5,nicer:5,RTCRtpReceiver:5,RTCRtpSender:5,RTCDMTFSender:5,WebrtcTCPSocket:5,CamerasChild:5,CamerasParent:5,VideoEngine:5,ShmemPool:5,TabShare:5,MediaChild:5,MediaParent:5,MediaManager:5,MediaTrackGraph:5,cubeb:5,MediaStream:5,MediaStreamTrack:5,DriftCompensator:5,ForwardInputTrack:5,MediaRecorder:5,MediaEncoder:5,TrackEncoder:5,VP8TrackEncoder:5,Muxer:5,GetUserMedia:5,MediaPipeline:5,WebAudioAPI:5,webrtc_trace:5,RTCRtpTransceiver:5,ForwardedInputTrack:5,HTMLMediaElement:5,HTMLMediaElementEvents:5"
.. _standard-logging-modules:
Standard Logging Modules
~~~~~~~~~~~~~~~~~~~~~~~~
.. list-table:: Standard Logging Modules
:header-rows: 1
* - Module
- Component
- Function
- Notes
* - jsep
- signalling
- JSEP state machine
-
* - sdp
- signalling
- SDP parsing
-
* - mtransport
- networking
- Network transports
-
* - nicer
- networking
- ICE stack
-
* - RTCRtpReceiver
- JS API
- JS API related to receiving media and media control packets
-
* - RTCRtpSender
- JS API
- JS API related to sending media and media control packets
-
* - RTCDMTFSender
- JS API
- JS API related to sending DTMF messages
-
* - WebrtcTCPSocket
- networking
-
-
* - CamerasChild
- media capture
- Content process end of IPC channel for receiving frames from media
capture devices
-
* - CamerasParent
- media capture
- Parent process end of IPC channel for sending frames from media capture devices
-
* - VideoEngine
- media capture
- Orchestrates capture of frames from media capture devices in the parent process
-
* - ShmemPool
- media capture
- Object pool of shared memory frame buffers for transferring media capture frames from parent to child process
-
* - TabShare
- media capture
- Captures tab content for sharing
-
* - MediaChild
- media
-
-
* - MediaParent
- media
-
-
* - MediaManager
- media
-
-
* - MediaTrackGraph
- media
-
-
* - cubeb
- media
-
-
* - MediaStream
- media
-
-
* - MediaStreamTrack
- media
-
-
* - DriftCompensator
- media
-
-
* - ForwardInputTrack
- media
-
-
* - MediaRecorder
- media
-
-
* - MediaEncoder
- media
-
-
* - TrackEncoder
- media
-
-
* - VP8TrackEncoder
- media
-
-
* - Muxer
- media
-
-
* - MediaPipeline
- network
- Glue code between transport, media, and libwebrtc components
-
* - WebAudioAPI
-
-
-
* - webrtc_trace
- webrtc
- libwebrtc logging
- Prior to Firefox v123 it must be enabled from
`about:webrtc <about:webrtc>`__ at runtime, or it must be set in the
:code:`MOZ_LOG` environment variable at launch.
* - RTCRtpTransceiver
- JS API
- implements the RTCRtpTransceiver object
-
* - HTMLMediaElement
-
-
-
* - ForwardedInputTrack
-
-
-
* - HTMLMediaElementEvents
-
-
-
.. _non-standard-loggin-modules:
Non-standard Logging Modules
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. list-table:: Standard Logging Modules
:header-rows: 1
* - Module
- Component
- Function
- Notes
* - RTPLogger
- network
- Logs RTP and RTCP packet fragments
- See `Debugging Encrypted Packets <#debugging-encrypted-packets>`__
.. _examining-call-performance-issues:
Examining Call Performance Issues
---------------------------------
.. _enabling-call-stats-history:
Enabling Call Stats History
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Call stats history is enabled by default in Nightly. To enable in
release builds open `about:config <about:config>`__, and change
"media.aboutwebrtc.hist.enabled" to true. This will keep a history
window of stats for a number of recent calls, allowing for inspection
in `about:webrtc <about:webrtc>`__ after a call has completed.
.. _dumping-call-stats:
Dumping Call Stats
~~~~~~~~~~~~~~~~~~
One can dump a JSON blob of call stats for an active call, or a recent
call if call stats history is enabled. There are two buttons in
`about:webrtc <about:webrtc>`__ to do this, "Copy Report" and "Copy Report
History". The former will create a copy of the most recent stats for the
PeerConnection. The later will copy all the history of stats reports
that `about:webrtc <about:webrtc>`__ has accumulated for that PeerConnection, this
can be up to several minutes of stats.
.. _debugging-encrypted-packets:
Debugging Encrypted Packets
~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. warning::
There is a `blog
post <https://blog.mozilla.org/webrtc/debugging-encrypted-rtp-is-more-fun-than-it-used-to-be/>`__
covering dumping unencrypted partial RTP and RTCP packets in the logs.
While the information presented in that post is still relevant,
the command to extract the packet data in the blog is out of date. A
working method is presented below;
Using the gecko logging system, unencrypted, mangled, partial, RTP-packets can
be written out. This may be a good avenue of investigation for packet loss and
recovery, simulcast, and feedback. Because the entirety of the packet is not
guaranteed to be logged, this is less suitable for debugging issues with
encoded media. These logged packets can be converted to PCAP files, which can
then be explored in `Wireshark <https://www.wireshark.org/>`__. The logs
produced by this module can be quite large, making it easy to identify by file
size which child process log files contain packet dumps.
To start RTP logging, one must enable the :code:`RtpLogger` log module. The :code:`sync`
option should also be used, as it prevents undesirable interleaving of log
messages. Here are the minimal log settings needed:
.. code:: sh
MOZ_LOG='sync,RtpLogger:5'
In order to interpret the packet contents, one needs to refer to the SDP.
Wireshark is unaware of the negotiated details, so it can not directly decode
the media, nor can it decode the header extensions. The SDP can also be logged,
and so the following is a more useful set of log settings:
.. code:: sh
MOZ_LOG='sync,RtpLogger:5,jsep:5'
.. note::
On macOS it is simple to install Wireshark and text2pcap with Homebrew:
.. code:: sh
# Use only one of the following:
# ==============================
# To install the Wireshark GUI application and the command line utilities:
brew install --cask wireshark
# To install only the command line utilities:
brew install wireshark
One can use :code:`tee` to capture log output
from a copy of Firefox launched from the command line, e.g. through
:code:`mach`. Alternatively, one can set a log file through the environment
variable :code:`MOZ_LOG_FILE` or through about:logging.
.. warning::
If log files are not being created by child processes, this is likely due
to sandboxing of content processes. To work around this one must either
select a location within the sandbox, disable the content sandbox, or launch
Firefox from the command line, e.g. from a Firefox dev environment:
.. code::
MOZ_LOG=sync,RtpLogger:5,jsep:5 MOZ_LOG_FILE= ./mach run 2>&1 | tee your.log
To produce a PCAP file one needs to filter the logs to include only the
RtpLogger log lines, reduce them down to the expected ingestion format for
text2pcap, and finally to invoke text2pcap.
.. code:: sh
cat your.log | rg 'RtpLogger.*RTC?P_PACKET|>>\s(?P<packet>.+$)' --only-matching --replace '$packet' | text2pcap -D -n -l 1 -i 17 -u 1234,1235 -t '%H:%M:%S.' - your.output.pcap
.. note::
If :code:`rg`, a.k.a ripgrep, is not already available, one can install it via one of the following methods:
.. code:: sh
# Install through cargo on macOS, Linux, or Windows
cargo install ripgrep
# Install via Homebrew on macOS
brew install ripgrep
# ripgrep packages may be available through the package manager for your
# Linux distro
The resulting PCAP file can be explored with Wireshark. Currently, one must refer to the SDP in order to interpret the RTP packets.
.. code:: sh
# On most Linux distros
wireshark -d 'udp.port==1234,rtp' your.output.pcap
# On macOS when installed via Homebrew
open /Applications/Wireshark.app --args -d 'udp.port==1234,rtp' your.output.pcap
.. _examining-codec_availability-and-capabilities:
Examining Codec Availability and Capabilities
---------------------------------------------
When codec negotiation doesn't happen as expected there are several helpful
locations where one can find information. The SDP offer and answer contain the
list of codecs that were in the initial offer, and the subset of those codecs
that were selected in the answer.
The easiest way to get this information on a live call is through
about:webrtc. Each RTCPeerConnection has its own subsection, that when
expanded contains an SDP section. There are buttons to display the offer
and the answer. Depending on which party was the offerer and which was
the answerer one may have a local offer and a remote answer, or a remote offer
and a local answer.
Firefox chooses which codecs to offer based on availability. Some codecs,
like Opus or VP8, are always available. Some codecs are available in software
and some codecs on some platforms are available in hardware. H264 support is
provided by a third-party, and is automatically downloaded the first time its
use is requested. This is a process which can take a variable amount of time
depending on network circumstances.
.. note::
A list of media codecs with playback support are available in the Media
section of `about:support#media <about:support#media>`__ . Not all media
codecs present and available to Firefox for playback are supported in WebRTC
calls.
To check the current factors, including preferences, that are being used to
calculate availability beyond codec presence, one can check the `Media Context`
section of about:webrtc.
.. figure:: img/about_webrtc_media_context.png
:alt: example about:webrtc media context values
.. _running-webrtc-tests:
For an in-depth reference covering the codecs available through WebRTC please
see the MDN Page: `Codecs Used by WebRTC <https://developer.mozilla.org/en-US/docs/Web/Media/Formats/WebRTC_codecs>`__.
Running WebRTC Tests
--------------------
There are a variety of tests providing coverage over WebRTC related code. The
Web Platform Suite provides conformance tests for browsers. The
:code:`gtest` suite is composed of unit tests. Crashtests are a type of
regression test which are written to induce crashes. There are fuzzing tests
which exercise APIs in ways that the authors did not foresee. All of the WebRTC
tests can be run locally with :code:`mach` or in CI on `Try`. There is a
detailed overview of all available test types including those not exercised by
WebRTC code `here </testing/automated-testing/index.html#functional-testing>`__.
.. note::
Running :code:`./mach <verb> --help` is an indispensable tool for discovering
options that can streamline your testing process.
.. note::
A test suite on `Try` maybe an aggregate of multiple logical test suites.
For example, the `mochitest-media` suite on try includes both the WebRTC and
playback mochitests.
.. warning::
WebRTC calls make use of a number of internal timers. Amongst the
behaviors these timers control are transport selection, bandwidth estimation,
packet loss determination, media adaptation, lip sync, connection timeout,
and more. There are `Try` targets which are too slow to reliably run a
number of the tests. Before running a specific test on `Try` for the first
time, it may be best to check the relevant test suite manifest. This can be
done easily with Searchfox.org by searching for and viewing a test file. If
that test has been disabled on one or more platforms the details will appear
as shown below:
.. figure:: img/searchfox_test_disabled_warning.png
:alt: Searchfox.org warning that the displayed test file has been disabled on Android
.. _test-atlas:
Test Atlas
----------
.. list-table:: WebRTC Test Locations
:widths: 10 10 20 10 10
:header-rows: 1
* - Component
- Test type
- Test file location
- Try suite
- Treeherder Abbreviations
* - WebRTC
- Mochitest
- dom/media/webrtc/mochitests
- mochitest-media
- :code:`mda`, :code:`M(mda)`
* -
- Web Platform Test
- testing/web-platform/tests/webrtc
- wpt
- :code:`wpt`, :code:`W(wpt)`
* -
- Crashtest
- dom/media/webrtc/tests/crashtests
- crash
- :code:`R(C)`
* - WebRTC Signalling
- GTest
- media/webrtc/signaling/gtest
- gtest
- :code:`gtest`
* - WebRTC (gUM / gDDM)
- Browser Chrome Test (mochitest)
- browser/base/content/test/webrtc
- browser-chrome
- :code:`bc`, :code:`M(bc)`
* - WebRTC Transport
- CPPUnit
- dom/media/webrtc/transport/test
- cppunit
-
* -
- fuzztest
- dom/media/webrtc/transport/fuzztest
- fuzzing
-
* - SDP parser
- Fuzzing
- dom/media/webrtc/tests/fuzztests
- fuzzing
-
.. _webrtc-web-platform-tests:
Web Platform Tests
~~~~~~~~~~~~~~~~~~
The WPT suite comprises conformance tests for various W3C specs such as: CSS,
JS APIs, and HTML. WebRTC is a JS API and as such its tests are of the `testharness.js <https://web-platform-tests.org/writing-tests/testharness.html>`__ type.
There is detailed :code:`WPT` documentation available `here </web-platform/index.html#web-platform-tests>`__
Web Platform Tests can be run locally from
.. code:: bash
# Run the entire WebRTC WPT test suite
./mach wpt testing/web-platform/tests/webrtc
# Run a single test, e.g. RTCPeerConnection-createAnswer.html
./mach wpt testing/web-platform/tests/webrtc/RTCPeerConnection-createAnswer.html
# Run all of the PeerConnection tests, i.e. RTCPeerConnection-*.html
# NOTE that the `mach` verb in use is `test` not `wpt`
./mach test testing/web-platform/tests/webrtc/RTCPeerConnection
.. warning::
Running the :code:`WPT` tests locally can be very disruptive to one's working
desktop environment, as windows will frequently appear and grab focus. Using
:code:`mach`'s :code:`--headless` flag will prevent this, and can be a great
way to run them if one's problem can be evaluated from command line output.
These tests are synced from the main `Web Platform Test
repository <https://github.com/web-platform-tests/wpt>`__, and likewise
our changes are synced from our `in-tree
copy <https://searchfox.org/mozilla-central/search?q=&path=testing%2Fweb-platform%2Ftests%2Fwebrtc&case=false®exp=false>`__
back to that repository.
.. warning::
Running the WebRTC mochitests in `Try` is done using the entire Web Platform Test suite, :code:`wpt`.
As such, this can be slow.
.. code:: bash
./mach try fuzzy --query 'wpt'
One can `run those same tests in
Chromium <https://chromium.googlesource.com/chromium/src/+/refs/heads/main/docs/testing/web_platform_tests_wptrunner.md>`__,
Safari, or Servo if one needs to compare behavior between browsers. This can be
done directly through :code:`mach`, see `running tests in other browsers </web-platform/index.html#running-tests-in-other-browsers>`__
for more details.
.. _mochitests:
Mochitests
~~~~~~~~~~
The WebRTC mochitests are integration tests, regression tests, and sanity
tests. The needs of these tests did not align with specification conformance
testing in the WPT, Web Platform Test, suite. Before writing a new mochitest,
one should consider if a test would be better expressed as a WPT, which all browsers
can test against.
Locally running the WebRTC mochitests should be done in a Firefox dev
environment using :code:`mach` as follows:
.. code:: bash
# Run the whole suite
./mach mochitest dom/media/webrtc/tests/mochitests
# Run a single test, e.g. test_peerConnection_basicAudioVideo.html
./mach mochitest dom/media/webrtc/tests/mochitests/test_peerConnection_basicAudioVideo.html
# Or
./mach mochitest test_peerConnection_basicAudioVideo.html
# Run all of the PeerConnection tests, i.e. test_peerConnection_*.html
./mach mochitest test_peerConnection
On :code:`try`, WebRTC mochitests are part of the larger media test suite.
This suite can be easily selected with the following fuzzy query:
.. code:: bash
# Run the media mochitest suite on all regular platforms
./mach try fuzzy --query 'mochitest-media'
# Run the media mochitest suite only on Linux which will resolve far faster
./mach try fuzzy --query 'linux mochitest-media'
.. _gtests:
GTests
~~~~~~
The gtests are all compiled into a single library target: :code:`xul-test`.
This makes running gtests from :code:`mach` slightly different than the other
test types.
.. code:: bash
# Run a single test by using Prefix.TestName, e.g. JsepSessionTest.FullCall
# https://searchfox.org/mozilla-central/rev/4d6a5b97428760d15bfcad13f8fc81439370a7ec/media/webrtc/signaling/gtest/jsep_session_unittest.cpp#1551
./mach gtest 'JsepSessionTest.FullCall'
# Run all the tests in a single Prefix, e.g. JsepSessionTest
./mach gtest 'JsepSessiontTest.*'
# Run all tests which have a Prefix.TestName containing the substring 'Jsep'
# See the table of selectors below
./mach gtest '*Jsep*'
# Run all the gtests for Firefox
./mach gtest
Here is a list of helpful substring selectors for executing specific WebRTC gtests:
.. list-table:: WebRTC GTest Selectors
:header-rows: 1
* - Selector
- Description
- Files
* - :code:`*Jsep*`
- JSEP (signalling) tests
- `jsep_session_unittest.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/jsep_session_unittest.cpp>`__
`jsep_trak_unittest.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/jsep_track_unittest.cpp>`__
* - :code:`*Sdp*`
- SDP parsing tests
- `sdp_unittests.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/sdp_unittests.cpp>`__
* - :code:`*MediaPipeline*`
- MediaPipline and MediaPipeline filter tests for RTP media handling
- `mediapipeline_unittest.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/mediapipeline_unittest.cpp>`__
* - :code:`*AudioConduit*`
- AudioConduit tests for libwebrtc glue for RTP audio media
- `audioconduit_unittests.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/audioconduit_unittests.cpp>`__
* - :code:`*VideoConduit*`
- VideoConduit tests for libwebrtc glue for RTP video media
- `videoconduit_unittests.cpp <https://searchfox.org/mozilla-central/source/media/webrtc/signaling/gtest/videoconduit_unittests.cpp>`__
For more general information about gtests see the documentation `here </gtest/index.html>`__.
Fuzz Testing
~~~~~~~~~~~~
It is not common to need to run fuzz testing as it is run on a semi-continuous
fashion in CI. It is more likely that one will need to respond to a bug filed
by a fuzzing bot. If one is interested in fuzzing one should consult the
excellent documentation available `here </tools/fuzzing/index.html>`__.
.. _code-atlas:
Code Atlas
----------
There are a number of components that work together to create a successful
WebRTC call. When debugging a call it can be difficult to see the larger puzzle
for all the pieces. A listing of the WebRTC related source code directories is
provided below to help one navigate.
.. list-table:: WebRTC Code Atlas
:header-rows: 1
* - Directory
- Component
- Description
- Notes
* - `dom/media/webrtc <https://searchfox.org/mozilla-central/source/dom/media/webrtc>`__
- WebRTC
- This is the primary directory for Firefox WebRTC code
-
* - `dom/media/webrtc/common <https://searchfox.org/mozilla-central/source/dom/media/webrtc/common>`__
- WebRTC
- This contains WebRTC related utility code
-
* - `dom/media/webrtc/jsapi <https://searchfox.org/mozilla-central/source/dom/media/webrtc/jsapi>`__
- JS API
- This contains the C++ implementations of the JavaScript WebRTC interfaces
-
* - `dom/media/webrtc/jsep <https://searchfox.org/mozilla-central/source/dom/media/webrtc/jsep>`__
- Signalling
- This is the JSEP state engine implementation
-
* - `dom/media/webrtc/libwebrtcglue <https://searchfox.org/mozilla-central/source/dom/media/webrtc/libwebrtcglue>`__
- WebRTC (various)
- This is the glue code between libwebrtc and Firefox
-
* - `dom/media/webrtc/libwebrtc_overrides <https://searchfox.org/mozilla-central/source/dom/media/webrtc/libwebrtc_overrides>`__
- WebRTC (various)
- Firefox-specific overrides for libwebrtc components
-
* - `dom/media/webrtc/sdp <https://searchfox.org/mozilla-central/source/dom/media/webrtc/sdp>`__
- Signalling
- This contains the SDP parsing interface
-
* - `dom/media/webrtc/tests <https://searchfox.org/mozilla-central/source/dom/media/webrtc/tests>`__
- Tests
- This contains `some` of the WebRTC related tests
-
* - `dom/media/webrtc/third_party_build <https://searchfox.org/mozilla-central/source/dom/media/webrtc/third_party_build>`__
- Build
- The scripting and configuration for vendoring new versions of libwebrtc are here
- This is unlikely to be of concern for debugging
* - `dom/media/webrtc/transport <https://searchfox.org/mozilla-central/source/dom/media/webrtc/transport>`__
- Network
- This contains the ICE implementation, the MDNS implementation, and transport code
-
* - `dom/media/webrtc/transport/ipc <https://searchfox.org/mozilla-central/source/dom/media/webrtc/transport/ipc>`__
- Network
- IPDL protocols for WebRTC transport, including STUN address requests and WebRTC TCP sockets
-
* - `dom/media/webrtc/transportbridge <https://searchfox.org/mozilla-central/source/dom/media/webrtc/transportbridge>`__
- WebRTC
- This contains the MediaPipeline and MediaPipeline filter code which is glue between transport and the libwebrtc RTP stack
-
* - `third_party/libsrtp <https://searchfox.org/mozilla-central/source/third_party/libsrtp>`__
- Network
- This is the SRTP implementation used by Firefox
-
* - `third_party/libwebrtc <https://searchfox.org/mozilla-central/source/third_party/libwebrtc>`__
- WebRTC (various)
- libwebrtc handles many aspects of WebRTC calls above the transport layer and below the presentation layer
-
* - `third_party/rust/webrtc-sdp <https://searchfox.org/mozilla-central/source/third_party/rust/webrtc-sdp>`__
- Signalling
- webrtc-sdp is a Rust implementation of a WebRTC-only SDP parser
-
* - `third_party/sipcc <https://searchfox.org/mozilla-central/source/third_party/sipcc>`__
- Signalling
- sipcc is a C implementation of a general SDP parser
- this carries many local modifications
* - `dom/media <https://searchfox.org/mozilla-central/source/dom/media>`__
- Media Capture
- GetUserMedia and related classes are here
- There are many other unrelated media source files here
* - `dom/media/systemservices <https://searchfox.org/mozilla-central/source/dom/media/systemservices>`__
- Media Capture
- System services for media capture including camera/microphone access
- Contains CamerasChild, CamerasParent, VideoEngine, and platform-specific implementations
* - `dom/media/encoder <https://searchfox.org/mozilla-central/source/dom/media/encoder>`__
- Media Encoding
- Media encoders for recording, including Opus and VP8 track encoders
-
* - `dom/media/gmp <https://searchfox.org/mozilla-central/source/dom/media/gmp>`__
- Media Codecs
- Gecko Media Plugin (GMP) framework for sandboxed codec plugins
- Used by WebRTC for H.264 codec support
* - `dom/media/platforms <https://searchfox.org/mozilla-central/source/dom/media/platforms>`__
- Media Codecs
- Platform-specific encoder/decoder implementations (Apple, Android, FFmpeg, WMF)
- Contains PlatformEncoderModule and EncoderConfig used by WebRTC
* - `netwerk/sctp/datachannel <https://searchfox.org/mozilla-central/source/netwerk/sctp/datachannel>`__
- Data Channels
- SCTP-based data channel implementation
-
* - `browser/components/webrtc <https://searchfox.org/mozilla-central/source/browser/components/webrtc>`__
- Browser UI
- Browser-level WebRTC UI components including permission prompts and indicators
-
* - `toolkit/content/aboutwebrtc <https://searchfox.org/mozilla-central/source/toolkit/content/aboutwebrtc>`__
- Debugging
- Implementation of the about:webrtc debugging page
-
* - `media/webrtc/signaling <https://searchfox.org/mozilla-central/source/media/webrtc/signaling>`__
- Signalling
- WebRTC signaling implementation and GTests
-
* - `browser/base/content/test/webrtc <https://searchfox.org/mozilla-central/source/browser/base/content/test/webrtc>`__
- Tests
- Browser chrome tests for WebRTC getUserMedia and getDisplayMedia
-
* - `testing/web-platform/tests/webrtc <https://searchfox.org/mozilla-central/source/testing/web-platform/tests/webrtc>`__
- Tests
- Web Platform Tests for WebRTC conformance
- Also includes webrtc-encoded-transform, webrtc-extensions, webrtc-ice, webrtc-identity, webrtc-priority, webrtc-stats, webrtc-svc
* - `dom/webidl <https://searchfox.org/mozilla-central/source/dom/webidl>`__
- WebIDL (JS API)
- This contains the WebIDL definitions for the WebRTC JS API amongst many other WebIDL definitions
- :code:`RTC*.webidl`
.. _standards-documentation:
Standards Documentation
-----------------------
When debugging API behavior it may be necessary to consult the specifications
for WebRTC. The ECMAScript API is defined in several W3C standards,
`webrtc-pc <https://www.w3.org/TR/webrtc/>`__, and
`webrtc-stats <https://www.w3.org/TR/webrtc-stats/>`__. The number of IETF
standards that are incorporated into WebRTC are too numerous to list here. One
can find these standards in the
`Normative References <https://www.w3.org/TR/webrtc/#normative-references>`__
section of the :code:`webrtc-pc` spec.
.. _delay-calculation:
Appendix: Delay Calculation
---------------------------
For all intents and purposes jitter and RTT are
additive in nature. If there was 25ms of jitter reported and a RTT of
272ms, one could estimate the expected delay from transmission at the
send side to play out on receive side to be
::
25ms + (272ms / 2) = 161ms
.. _glossary:
Appendix: WebRTC Glossary
-------------------------
Session Management Terms
~~~~~~~~~~~~~~~~~~~~~~~~
**Offer** An SDP document created by one peer to initiate a connection,
proposing media parameters and capabilities.
**Answer** An SDP document created in response to an offer, accepting or
rejecting the proposed media parameters.
**Pranswer (Provisional Answer)** A preliminary answer that may be
modified before the final answer is accepted, allowing for early media
establishment.
**Rollback** The action of reverting to a previous stable session state,
typically used when negotiation fails or needs to be cancelled. During
offer/answer negotiation, the ICE agent automatically initiates rollback
when an offer collision occurs (e.g., receiving an offer while in
have-local-offer state). Learn more about `perfect
negotiation <https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Perfect_negotiation>`__
on MDN and RFC 9429
`§4.1.10.2 <https://www.rfc-editor.org/rfc/rfc9429#section-4.1.10.2>`__
and `§5.7 <https://www.rfc-editor.org/rfc/rfc9429#section-5.7>`__.
**Perfect Negotiation** A design pattern for WebRTC signaling that
handles offer collisions gracefully using rollback, allowing both peers
to attempt to be the offerer simultaneously without complex glare
handling logic. Learn more about `perfect
negotiation <https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Perfect_negotiation>`__
on MDN.
**Signaling State** The current state of the offer/answer negotiation
process (``stable``, ``have-local-offer``, ``have-remote-offer``,
``have-local-pranswer``, ``have-remote-pranswer``, ``closed``). Learn
more about
`signalingState <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/signalingState>`__
on MDN and RFC 9429
`§3.2 <https://www.rfc-editor.org/rfc/rfc9429#section-3.2>`__.
**Pending Description** An offer or answer that has been created or set
but not yet matched with a corresponding answer or offer. Learn more
about
`pendingLocalDescription <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/pendingLocalDescription>`__
and
`pendingRemoteDescription <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/pendingRemoteDescription>`__
on MDN and RFC 9429
`§4.1.14 <https://www.rfc-editor.org/rfc/rfc9429#section-4.1.14>`__ and
`§4.1.16 <https://www.rfc-editor.org/rfc/rfc9429#section-4.1.16>`__.
**Current Description** The currently active local or remote session
description after successful negotiation. Learn more about
`currentLocalDescription <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/currentLocalDescription>`__
and
`currentRemoteDescription <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/currentRemoteDescription>`__
on MDN and RFC 9429
`§4.1.13 <https://www.rfc-editor.org/rfc/rfc9429#section-4.1.13>`__ and
`§4.1.15 <https://www.rfc-editor.org/rfc/rfc9429#section-4.1.15>`__.
Transport and Bundle Terms
~~~~~~~~~~~~~~~~~~~~~~~~~~
**Bundle Policy** Controls how multiple media tracks are combined onto a
single transport (``balanced``, ``max-compat``, ``max-bundle``). Learn
more about
`transports <https://developer.mozilla.org/en-US/docs/Web/API/RTCDtlsTransport#allocation_of_dtls_transports>`__
and `bundle
configuration <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/RTCPeerConnection#bundlepolicy>`__
on MDN.
**Bundle Level** The m-line index of the media section that provides the
transport for bundled media.
**Transport ID** A unique identifier for a transport used to carry media
or data.
**ICE Restart** The process of restarting ICE candidate gathering and
connectivity checks, typically to recover from network changes.
**ICE Trickle** A technique where ICE candidates are incrementally sent
to the remote peer as they are gathered, rather than waiting for all
candidates to be collected before beginning negotiation. Learn more
about
`connectivity <https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Connectivity>`__
on MDN and `trickle
detection <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/canTrickleIceCandidates>`__
on in the JSEP spec.
**ICE Credentials (ufrag/pwd)** Username fragment and password used for
ICE connectivity checks.
**DTLS Fingerprint** A cryptographic hash of the DTLS certificate used
to verify the identity of the peer. Learn more about `RTCCertificate
fingerprints <https://developer.mozilla.org/en-US/docs/Web/API/RTCCertificate/getFingerprints>`__
on MDN and RFC 8122
`§5 <https://www.rfc-editor.org/rfc/rfc8122#section-5>`__ and RFC 4572
`§1 <https://www.rfc-editor.org/rfc/rfc4572#section-1>`__.
**ICE Lite** A simplified ICE implementation that only acts as a
controlled agent, used by servers. Learn more about ICE Lite in RFC 8445
`§3 <https://www.rfc-editor.org/rfc/rfc8445#section-3>`__.
**ICE Controlling** The ICE agent role that makes the final decision on
which candidate pair to use.
**Candidate** An ICE candidate describing the protocols and routing
needed for WebRTC to communicate with a remote device. Each candidate
specifies network connectivity information including IP address, port,
transport protocol, and candidate type (host, srflx, prflx, relay).
Candidates are gathered during connection establishment and exchanged
between peers. Learn more about
`RTCIceCandidate <https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate>`__
on MDN and RFC 8445
`§2 <https://www.rfc-editor.org/rfc/rfc8445#section-2>`__.
**Candidate Pair** A pairing of a local and remote ICE candidate that
together describe a viable connection path between two WebRTC endpoints.
During ICE connectivity checks, candidate pairs are tested to determine
which provides the best connection. The selected candidate pair is used
for media and data transport. Learn more about
`RTCIceCandidatePair <https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePair>`__
and `candidate pair
stats <https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats>`__
on MDN and RFC 8445
`§2 <https://www.rfc-editor.org/rfc/rfc8445#section-2>`__.
Codec and Media Encoding Terms
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Payload Type (PT)** A numeric identifier (0-127) in RTP packets that
identifies the codec being used. Payload types 0-95 are statically
assigned for common codecs, while 96-127 are dynamically assigned and
negotiated via SDP. Learn more about `RTP
parameters <https://www.iana.org/assignments/rtp-parameters>`__ via the
IANA registry where many of the relevant RFCs for specific formats are
linked.
**FMTP (Format Parameters)** SDP attribute containing codec-specific
parameters like profile, level, or packetization mode.
**RTX (Retransmission)** A mechanism for retransmitting lost RTP
packets, using a separate payload type.
**RED (Redundant Encoding)** A mechanism for including redundant data in
RTP packets to help with packet loss recovery.
**ULPFEC (Uneven Level Protection Forward Error Correction)** Forward
error correction mechanism for protecting video streams against packet
loss. Learn more about ULPFEC in RFC 5109
`§1 <https://datatracker.ietf.org/doc/html/rfc5109#section-1>`__.
**FEC (Forward Error Correction)** Technique of adding redundancy to
transmitted data to allow recovery from errors without retransmission.
**Opus** A versatile audio codec widely used in WebRTC, supporting both
voice and music at various bitrates. Learn more about
`Opus <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#opus>`__
on MDN.
**VP8** An open video codec developed by Google, mandatory for WebRTC
implementations. Learn more about
`VP8 <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#vp8>`__
on MDN.
**VP9** An improved successor to VP8, offering better compression
efficiency.
**AV1** A modern open video codec offering significant compression
improvements over VP9. Learn more about
`AV1 <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#av1>`__
on MDN.
**H.264/AVC (Advanced Video Coding)** A widely-used video codec,
mandatory for WebRTC implementations. Learn more about
`AVC/H.264 <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#avc_h.264>`__
on MDN.
**H.265/HEVC (High Efficiency Video Coding)** A successor to H.264
offering improved compression efficiency, with hardware-dependent
support in modern browsers. Chrome 136+ and Safari support H.265 in
WebRTC when available via hardware. Learn more about `video
codecs <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/Video_codecs>`__
on MDN.
**G.722** A wideband audio codec operating at 64 kbit/s. Learn more
about
`G.722 <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/Audio_codecs#g.722_64_kbps_7_khz_audio_coding>`__
on MDN.
**PCMU/PCMA** G.711 audio codecs (μ-law and A-law) offering basic audio
quality, mandatory for WebRTC. Learn more about
`G.711 <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#g.711>`__
on MDN.
RTP Header Extensions and Features
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**RTP Extension (extmap)** RTP header extensions that carry additional
metadata like audio levels or video orientation.
**SSRC (Synchronization Source)** A 32-bit identifier for a single
source of RTP packets within an RTP session.
**CNAME (Canonical Name)** A persistent identifier for an RTP source
that remains constant across SSRCs.
**RID (Restriction Identifier)** An identifier used in simulcast to
distinguish between different encodings of the same source.
**MID (Media Identification)** An identifier that associates an RTP
stream with a specific m-line in the SDP.
**MSID (Media Stream Identification)** An identifier that associates an
RTP stream with a MediaStream and track.
Common RTP Header Extensions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RTP header extensions carry additional metadata in RTP packets using the
framework defined in RFC 8285. All extensions must be negotiated via SDP
before use.
**Audio Level (Client-to-Mixer)** Indicates the audio level of the RTP
packet payload in -dBov, allowing servers to identify active speakers
without decoding audio. URI:
``urn:ietf:params:rtp-hdrext:ssrc-audio-level``. Learn more about `audio
level
indication <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/getParameters#headerextensions>`__
on MDN and RFC 6464
`§1 <https://www.rfc-editor.org/rfc/rfc6464#section-1>`__.
**Audio Level (Mixer-to-Client)** Indicates audio levels of contributing
sources in a mixed audio stream. URI:
``urn:ietf:params:rtp-hdrext:csrc-audio-level``. Learn more in RFC 6465
`§1 <https://www.rfc-editor.org/rfc/rfc6465#section-1>`__.
**Video Orientation (CVO)** Indicates the rotation needed for video
frames (0, 90, 180, 270 degrees) to support orientation changes. URI:
``urn:3gpp:video-orientation``. Learn more in 3GPP TS 26.114 and RFC
8285 `§1 <https://www.rfc-editor.org/rfc/rfc8285#section-1>`__.
**Transport-Wide Sequence Number** Provides sequence numbers for
transport-wide congestion control feedback. URI:
``http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions``.
Learn more in draft-holmer-rmcat-transport-wide-cc-extensions
`§2 <https://datatracker.ietf.org/doc/html/draft-holmer-rmcat-transport-wide-cc-extensions#section-2>`__.
**MID Header Extension** Carries the media identification tag in RTP
packets for bundle multiplexing. URI:
``urn:ietf:params:rtp-hdrext:sdes:mid``. Learn more in RFC 9143
`§1 <https://www.rfc-editor.org/rfc/rfc9143#section-1>`__.
**RID Header Extension** Identifies RTP streams in simulcast scenarios.
URI: ``urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id``. Learn more in
RFC 8852 `§1 <https://www.rfc-editor.org/rfc/rfc8852#section-1>`__.
**Absolute Capture Time** Timestamps packets with NTP time when media
was captured, enabling audio-video synchronization across hops. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/abs-capture-time``. Learn
more in draft-ietf-avtcore-abs-capture-time
`§1 <https://www.ietf.org/archive/id/draft-ietf-avtcore-abs-capture-time-00.html#section-1>`__.
**Transmission Time Offset** Communicates the offset between RTP
timestamp and actual transmission time, useful for handling
retransmissions and buffering. URI:
``urn:ietf:params:rtp-hdrext:toffset``. Learn more in RFC 5450
`§1 <https://www.rfc-editor.org/rfc/rfc5450#section-1>`__.
**Absolute Send Time** Timestamps packets with departure time from the
sender, providing precise timing for bandwidth estimation. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time``. Learn
more in the `abs-send-time
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/abs-send-time/>`__.
**Video Content Type** Indicates whether video is screenshare or camera
content, enabling optimized rendering. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/video-content-type``.
Learn more in the `video-content-type
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/video-content-type/>`__.
**Video Timing** Provides per-frame timing information including encode
start/finish, packetization, and pacer timestamps for performance
analysis. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/video-timing``. Learn
more in the `video-timing
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/video-timing/>`__.
**Playout Delay** Allows sender to specify minimum and maximum playout
delay ranges, enabling latency control for different use cases (gaming,
streaming, conferencing). URI:
``http://www.webrtc.org/experiments/rtp-hdrext/playout-delay``. Learn
more in the `playout-delay
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/playout-delay/>`__.
**Color Space** Communicates color space information and HDR metadata
for proper video rendering. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/color-space``. Learn more
in the `color-space
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/color-space/>`__.
**Video Frame Tracking ID** Propagates VideoFrame ID field through RTP
packets for frame tracking. URI:
``http://www.webrtc.org/experiments/rtp-hdrext/video-frame-tracking-id``.
This is only for quality testing purposes and should not be used in
production. Learn more in the `video-frame-tracking-id
specification <https://webrtc.googlesource.com/src/+/refs/heads/main/docs/native-code/rtp-hdrext/video-frame-tracking-id/>`__.
**Dependency Descriptor** Conveys information about video frames and
their dependencies in a codec-agnostic way, enabling selective
forwarding without decoding. Designed for AV1 but useful for other
codecs. URI:
``https://aomediacodec.github.io/av1-rtp-spec/#dependency-descriptor-rtp-header-extension``.
Learn more in the `AV1 RTP
specification <https://aomediacodec.github.io/av1-rtp-spec/>`__.
**SDES Items in RTP Headers** Allows rapid delivery of RTCP Source
Description items (like CNAME) via RTP header extensions. Learn more in
RFC 7941 `§1 <https://www.rfc-editor.org/rfc/rfc7941#section-1>`__.
Simulcast and Encoding Terms
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Simulcast** Simultaneously sending multiple encoded versions of the
same video source at different qualities. Codecs may have optimizations
that improve performance when encoding the same frame at different
resolutions.
**SVC (Scalable Video Coding)** A video coding technique that encodes a
single bitstream that can be decoded at different resolutions, frame rates,
or quality levels to adapt to varying network conditions and receiver
capabilities. Unlike simulcast which sends multiple independent streams, WebRTC
SVC produces one encoded stream on a single SSRC. Scalability modes use **L**
for spatial layers (resolution scalability) and **T** for temporal layers
(frame rate scalability), such as L1T2 or L3T3. SVC is particularly useful
for Selective Forwarding Units (SFUs) which can selectively forward layers
to adapt to varying network conditions without re-encoding. Learn more about
`scalability modes
<https://developer.mozilla.org/en-US/docs/Web/API/RTCOutboundRtpStreamStats/scalabilityMode>`__
on MDN and in the W3C `Scalable Video Coding (SVC) Extension
<https://www.w3.org/TR/webrtc-svc/>`__ specification.
**Encoding** A single encoded representation of media, identified by an
SSRC or RID.
**Send Track / Recv Track** Internal representation of media direction -
tracks for sending media and tracks for receiving media.
**Transceiver** A pairing of a sender and receiver that share a common
mid value, managing bidirectional media.
**Negotiated Details** The final agreed-upon parameters for a track
after offer/answer negotiation completes.
SDP Attributes and Parameters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**M-line (Media Description Line)** An SDP line beginning with ``m=``
that defines a media stream, specifying the media type (audio, video,
etc.), port, transport protocol, and codec format. The interpretation of
the format is dependent on the selected protocol. Each m-line starts a
new media section that continues until the next m-line or end of the
SDP. Learn more about
`SDP <https://developer.mozilla.org/en-US/docs/Glossary/SDP>`__ on MDN
and RFC 8866
`§5.14 <https://www.rfc-editor.org/rfc/rfc8866#section-5.14>`__.
**Direction Attribute** SDP attribute indicating media stream direction
(``sendrecv``, ``sendonly``, ``recvonly``, ``inactive``).
**Setup Role** DTLS role in the connection (``active``, ``passive``,
``actpass``) determining who initiates the handshake.
**TIAS (Transport Independent Application Specific Maximum)** Bandwidth
constraint indicating maximum bitrate in bits per second. Learn more
about
`maxBitrate <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#maxbitrate>`__
on MDN and RFC 3890
`§6.2.2 <https://datatracker.ietf.org/doc/html/rfc3890#section-6.2.2>`__.
H.264 Format Parameters
~~~~~~~~~~~~~~~~~~~~~~~
**H.264 Profile Level ID** H.264-specific parameter indicating the codec
profile (baseline, main, high) and level (capability). Signaled in SDP
via the ``profile-level-id`` FMTP parameter. Learn more about `H.264
profile-level-id <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#profile-level-id>`__
on MDN and RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Max-FS (Maximum Frame Size)** Video codec parameter limiting the
maximum number of macroblocks in a frame. Signaled in SDP via the
``max-fs`` FMTP parameter for H.264. Learn more about
`max-fs <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#max-fs>`__
on MDN and RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Max-FR (Maximum Frame Rate)** Video codec parameter limiting the
maximum frame rate in frames per second. Signaled in SDP via the
``max-fr`` FMTP parameter for H.264. Learn more about
`maxFramerate <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#maxframerate>`__
on MDN and RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Max-BR (Maximum Bitrate)** Video codec parameter limiting the
maximum bitrate. Signaled in SDP via the ``max-br`` FMTP parameter for
H.264. Learn more about
`maxBitrate <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpSender/setParameters#maxbitrate>`__
on MDN and RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Max-MBPS (Maximum Macroblocks Per Second)** H.264 parameter
limiting the processing rate. Signaled in SDP via the ``max-mbps`` FMTP
parameter. Learn more about
`max-mbps <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#max-mbps>`__
on MDN and RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Sprop-parameter-sets** H.264 parameter containing SPS/PPS data
for decoder initialization. Signaled in SDP via the
``sprop-parameter-sets`` FMTP parameter. Learn more in RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**H.264 Packetization Mode** H.264 parameter specifying the
packetization method for RTP packets. Mode 0 uses single NAL unit
packets, while Mode 1 allows for more efficient fragmentation and
aggregation of NAL units. Signaled in SDP via the ``packetization-mode``
FMTP parameter. Learn more in RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
VP8 Format Parameters
~~~~~~~~~~~~~~~~~~~~~
**VP8 Max-FS (Maximum Frame Size)** VP8 parameter limiting the maximum
frame size in units of macroblocks that the decoder can decode. The
decoder can handle frame widths and heights up to int(sqrt(max-fs \* 8))
macroblocks. For example, max-fs=1200 supports up to 640x480 resolution
(97 macroblocks width/height, or 1552 pixels). Signaled in SDP via the
``max-fs`` FMTP parameter. Learn more in RFC 7741
`§6.1 <https://www.rfc-editor.org/rfc/rfc7741#section-6.1>`__.
**VP8 Max-FR (Maximum Frame Rate)** VP8 parameter limiting the maximum
frame rate in frames per second that the decoder can decode. Signaled in
SDP via the ``max-fr`` FMTP parameter. Learn more in RFC 7741
`§6.1 <https://www.rfc-editor.org/rfc/rfc7741#section-6.1>`__.
VP9 Format Parameters
~~~~~~~~~~~~~~~~~~~~~
**VP9 Profile-ID** VP9 parameter indicating the codec profile (0-3).
Profile 0 supports 8-bit 4:2:0 only, Profile 1 adds 8-bit 4:2:2/4:4:4,
Profile 2 adds 10/12-bit 4:2:0, and Profile 3 adds 10/12-bit
4:2:2/4:4:4. When not present, a value of 0 is inferred. Signaled in SDP
via the ``profile-id`` FMTP parameter. Learn more in RFC 9628
`§6 <https://www.rfc-editor.org/rfc/rfc9628#section-6>`__.
**VP9 Max-FS (Maximum Frame Size)** VP9 parameter limiting the maximum
frame size in units of macroblocks that the decoder can decode. Signaled
in SDP via the ``max-fs`` FMTP parameter. Learn more in RFC 9628
`§6 <https://www.rfc-editor.org/rfc/rfc9628#section-6>`__.
**VP9 Max-FR (Maximum Frame Rate)** VP9 parameter limiting the maximum
frame rate in frames per second that the decoder can decode. Signaled in
SDP via the ``max-fr`` FMTP parameter. Learn more in RFC 9628
`§6 <https://www.rfc-editor.org/rfc/rfc9628#section-6>`__.
AV1 Format Parameters
~~~~~~~~~~~~~~~~~~~~~
**AV1 Profile** AV1 parameter indicating the codec profile (Main, High,
or Professional). The profile determines the supported bit depths and
chroma subsampling formats. Signaled in SDP via the ``profile``
parameter. Learn more in the `AV1 RTP
specification <https://aomediacodec.github.io/av1-rtp-spec/#sdp-parameters>`__.
**AV1 Level-IDX** AV1 parameter indicating the level, which defines the
decoder’s maximum processing capabilities including resolution, frame
rate, and bitrate. Signaled in SDP via the ``level-idx`` parameter.
Learn more in the `AV1 RTP
specification <https://aomediacodec.github.io/av1-rtp-spec/#sdp-parameters>`__.
**AV1 Tier** AV1 parameter indicating the tier (Main or High), which
determines the maximum bitrate for a given level. High tier allows
roughly 2x the bitrate of Main tier. Signaled in SDP via the ``tier``
parameter. Learn more in the `AV1 RTP
specification <https://aomediacodec.github.io/av1-rtp-spec/#sdp-parameters>`__.
H.265/HEVC Format Parameters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**H.265 Profile-ID** H.265 parameter indicating the codec profile along
with profile-space. Profiles include Main, Main 10, Main Still Picture,
and others that determine supported bit depths and features. Signaled in
SDP via the ``profile-id`` FMTP parameter. Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Level-ID** H.265 parameter indicating the level, which defines
the decoder’s maximum processing capabilities including resolution,
frame rate, and bitrate. Signaled in SDP via the ``level-id`` FMTP
parameter. Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Tier-Flag** H.265 parameter indicating the tier (Main=0 or
High=1), which determines the maximum bitrate for a given level. High
tier supports higher bitrates than Main tier at the same level. Signaled
in SDP via the ``tier-flag`` FMTP parameter. Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Max-LSR (Maximum Luma Sample Rate)** H.265 parameter indicating
the maximum processing rate in units of luma samples per second,
allowing receivers to signal capabilities beyond the base level
requirements. Signaled in SDP via the ``max-lsr`` FMTP parameter. Learn
more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Max-FPS (Maximum Frame Rate)** H.265 parameter indicating the
maximum picture rate in units of pictures per 100 seconds, used to
signal a constraint that lowers the maximum picture rate. Signaled in
SDP via the ``max-fps`` FMTP parameter. Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Max-BR (Maximum Bitrate)** H.265 parameter indicating the
maximum bitrate capability of the receiver, extending beyond the base
level requirements. Signaled in SDP via the ``max-br`` FMTP parameter.
Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Max-CPB (Maximum Coded Picture Buffer)** H.265 parameter
indicating the maximum coded picture buffer size capability, allowing
receivers to signal support for larger buffers than required by the base
level. Signaled in SDP via the ``max-cpb`` FMTP parameter. Learn more in
RFC 7798 `§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
**H.265 Sprop-VPS/SPS/PPS** H.265 parameters containing VPS (Video
Parameter Set), SPS (Sequence Parameter Set), and PPS (Picture Parameter
Set) data for out-of-band decoder initialization. Signaled in SDP via
the ``sprop-vps``, ``sprop-sps``, and ``sprop-pps`` FMTP parameters.
Learn more in RFC 7798
`§7.1 <https://www.rfc-editor.org/rfc/rfc7798#section-7.1>`__.
RTCP Feedback Types
~~~~~~~~~~~~~~~~~~~
**RTCP Feedback (rtcp-fb)** Mechanisms for providing rapid feedback
about media quality and requests.
**NACK (Negative Acknowledgment)** RTCP feedback requesting
retransmission of lost packets.
**PLI (Picture Loss Indication)** RTCP feedback requesting a full
intra-frame when video decoding fails. Learn more about PLI in RFC 4585
`§6.3.1 <https://www.rfc-editor.org/rfc/rfc4585.html#section-6.3.1>`__.
**FIR (Full Intra Request)** RTCP feedback requesting a full intra-frame
for decoder refresh. Learn more about FIR in RFC 2032
`§5.2.1 <https://www.rfc-editor.org/rfc/rfc2032#section-5.2.1>`__.
**TMMBR (“timber”, Temporary Maximum Media Stream Bitrate Request)**
RTCP feedback for requesting bitrate reduction. Learn more about TMMBR
in RFC 5104
`§3.5.4 <https://datatracker.ietf.org/doc/html/rfc5104#section-3.5.4>`__.
**REMB (Receiver Estimated Maximum Bitrate)** RTCP feedback
communicating receiver’s bandwidth estimate to the sender. Learn more
about REMB in draft-alvestrand-rmcat-remb
`§2 <https://datatracker.ietf.org/doc/html/draft-alvestrand-rmcat-remb#section-2>`__.
**Transport-CC (Transport-wide Congestion Control)** Mechanism for
gathering packet arrival times to estimate available bandwidth. Learn
more about transport-cc in
draft-holmer-rmcat-transport-wide-cc-extensions
`§2 <https://datatracker.ietf.org/doc/html/draft-holmer-rmcat-transport-wide-cc-extensions#section-2>`__.
**FlexFEC** Flexible forward error correction mechanism for RTP streams
that can protect against packet loss by sending redundant recovery
packets. Uses a separate RTP stream for FEC packets, allowing flexible
configuration of protection levels. Learn more about FlexFEC in RFC 8627
`§1 <https://datatracker.ietf.org/doc/html/rfc8627#section-1>`__.
Audio-Specific Terms
~~~~~~~~~~~~~~~~~~~~
**DTX (Discontinuous Transmission)** Not transmitting audio packets
during silence to save bandwidth. Signaled in SDP via the ``usedtx``
FMTP parameter for Opus. Learn more about DTX in `supported audio
codecs <https://developer.mozilla.org/en-US/docs/Web/Media/Guides/Formats/WebRTC_codecs#supported_audio_codecs>`__
on MDN and RFC 7587
`§6.1 <https://www.rfc-editor.org/rfc/rfc7587#section-6.1>`__.
**In-band FEC** Opus-specific forward error correction included within
the audio stream. Signaled in SDP via the ``useinbandfec`` FMTP
parameter. Learn more in RFC 7587
`§6.1 <https://www.rfc-editor.org/rfc/rfc7587#section-6.1>`__.
**Stereo** Two-channel audio encoding. Stereo can either be
independently encoded or, in some codecs like Opus, joint encoded.
**Ptime (Packet Time)** The duration of media represented in a single
RTP packet, in milliseconds. Learn more about ptime in RFC 8866
`§6.4 <https://datatracker.ietf.org/doc/html/rfc8866#section-6.4>`__.
**Maxptime (Maximum Packet Time)** The maximum acceptable ptime value.
Learn more about maxptime in RFC 8866
`§6.4 <https://www.rfc-editor.org/rfc/rfc8866#section-6.4>`__.
**CBR (Constant Bitrate)** Encoding mode where bitrate remains constant
regardless of content complexity. For Opus, signaled in SDP via the
``cbr`` FMTP parameter. Learn more in RFC 7587
`§6.1 <https://www.rfc-editor.org/rfc/rfc7587#section-6.1>`__.
**VBR (Variable Bitrate)** Encoding mode where bitrate varies based on
content complexity, allowing more efficient compression. This is the
default mode for many codecs like Opus.
**ABR (Adaptive Bitrate)** Encoding mode that dynamically adjusts
bitrate in real-time based on network conditions and receiver feedback.
In WebRTC, ABR uses bandwidth estimation algorithms (like Transport-CC)
to continuously monitor connection quality and adapt the encoding
bitrate to maintain optimal quality while preventing congestion. This
differs from VBR which adapts to content complexity but not network
conditions. Learn more about `bandwidth
estimation <https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/availableOutgoingBitrate>`__
on MDN.
Data Channel Terms
~~~~~~~~~~~~~~~~~~
**SCTP (Stream Control Transmission Protocol)** Protocol used for WebRTC
data channels, providing reliable or unreliable delivery. Learn more
about
`RTCSctpTransport <https://developer.mozilla.org/en-US/docs/Web/API/RTCSctpTransport>`__
on MDN and RFC 9260
`§1 <https://datatracker.ietf.org/doc/html/rfc9260#section-1>`__.
**Data Channel** A bidirectional data transport for arbitrary
application data over WebRTC. Learn more about
`RTCDataChannel <https://developer.mozilla.org/en-US/docs/Web/API/RTCDataChannel>`__
on MDN and RFC 8831
`§6.4 <https://datatracker.ietf.org/doc/html/rfc8831#name-data-channel-definition>`__.
**SCTP Port** The port number used for SCTP associations in data
channels.
**Max Message Size** The maximum size of a single message that can be
sent over a data channel.
Session State and Lifecycle
~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Associated** A transceiver that has been assigned a mid value during
negotiation.
**Negotiated** A transceiver that has completed offer/answer exchange
and has agreed parameters.
**Stopped** A transceiver that has been permanently stopped and cannot
be reused.
**Receptive** A transceiver’s ability to receive media based on the
local description.
**Add Track Magic** Special negotiation behavior where transceivers
created via ``addTrack()`` can be reused during negotiation, unlike
those created with ``addTransceiver()``. When applying a remote offer,
``addTrack()``-created transceivers may be “stolen” to match incoming
m-lines, while ``addTransceiver()``-created transceivers are never
reused. Learn more about
`addTrack <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/addTrack>`__
and
`addTransceiver <https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/addTransceiver>`__
on MDN.
Advanced Terms
~~~~~~~~~~~~~~
**Subprofile** H.264 profiles like Constrained Baseline, Baseline, Main,
High, etc. Signaled in SDP via the ``profile-level-id`` FMTP parameter.
Learn more in RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**Level Asymmetry Allowed** H.264 parameter allowing different encoding
levels in each direction. Signaled in SDP via the
``level-asymmetry-allowed`` FMTP parameter. Learn more in RFC 6184
`§8.1 <https://www.rfc-editor.org/rfc/rfc6184#section-8.1>`__.
**Unique Receive Payload Types** Payload types that can be uniquely
identified for SSRC-to-PT matching.
**Preferred Codecs** User-specified codec ordering that overrides
defaults. See Codec Preferences.
**Codec Preferences** Settings controlling which codecs are enabled and
their configurations, specified as an array of ``RTCRtpCodecCapability``
objects in order of decreasing preference. Set via
``setCodecPreferences()`` on an ``RTCRtpTransceiver`` to control which
codecs are used during negotiation. Codecs not included in the
preferences are excluded from negotiation. An empty list resets to user
agent defaults. Learn more about
`setCodecPreferences <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpTransceiver/setCodecPreferences>`__
on MDN.
**RTCRtpScriptTransform** An interface that enables custom processing of
encoded audio and video frames in WebRTC by inserting transform streams into
sender and receiver pipelines. The transform runs in a Worker thread and
receives encoded frames through a TransformStream, allowing real-time frame
manipulation, encryption, analytics, or bandwidth optimization. Developers
assign transforms to ``RTCRtpSender.transform`` for outgoing frames or
``RTCRtpReceiver.transform`` for incoming frames. The worker receives an
``rtctransform`` event with a ``transformer`` object containing readable and
writable streams for processing. Learn more about
`RTCRtpScriptTransform <https://developer.mozilla.org/en-US/docs/Web/API/RTCRtpScriptTransform>`__
and `Using WebRTC Encoded Transforms
<https://developer.mozilla.org/en-US/docs/Web/API/WebRTC_API/Using_Encoded_Transforms>`__
on MDN.
|