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 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741
|
<pre>Network Working Group H. Schulzrinne
Request for Comments: 4733 Columbia U.
Obsoletes: <a href="./rfc2833">2833</a> T. Taylor
Category: Standards Track Nortel
December 2006
<span class="h1">RTP Payload for DTMF Digits, Telephony Tones, and Telephony Signals</span>
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The IETF Trust (2006).
Abstract
This memo describes how to carry dual-tone multifrequency (DTMF)
signalling, other tone signals, and telephony events in RTP packets.
It obsoletes <a href="./rfc2833">RFC 2833</a>.
This memo captures and expands upon the basic framework defined in
<a href="./rfc2833">RFC 2833</a>, but retains only the most basic event codes. It sets up an
IANA registry to which other event code assignments may be added.
Companion documents add event codes to this registry relating to
modem, fax, text telephony, and channel-associated signalling events.
The remainder of the event codes defined in <a href="./rfc2833">RFC 2833</a> are
conditionally reserved in case other documents revive their use.
This document provides a number of clarifications to the original
document. However, it specifically differs from <a href="./rfc2833">RFC 2833</a> by removing
the requirement that all compliant implementations support the DTMF
events. Instead, compliant implementations taking part in
out-of-band negotiations of media stream content indicate what events
they support. This memo adds three new procedures to the <a href="./rfc2833">RFC 2833</a>
framework: subdivision of long events into segments, reporting of
multiple events in a single packet, and the concept and reporting of
state events.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Terminology ................................................<a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Overview ...................................................<a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Potential Applications .....................................<a href="#page-5">5</a>
<a href="#section-1.4">1.4</a>. Events, States, Tone Patterns, and Voice-Encoded Tones .....<a href="#page-6">6</a>
<a href="#section-2">2</a>. RTP Payload Format for Named Telephone Events ...................<a href="#page-8">8</a>
<a href="#section-2.1">2.1</a>. Introduction ...............................................<a href="#page-8">8</a>
<a href="#section-2.2">2.2</a>. Use of RTP Header Fields ...................................<a href="#page-8">8</a>
<a href="#section-2.2.1">2.2.1</a>. Timestamp ...........................................<a href="#page-8">8</a>
<a href="#section-2.2.2">2.2.2</a>. Marker Bit ..........................................<a href="#page-8">8</a>
<a href="#section-2.3">2.3</a>. Payload Format .............................................<a href="#page-8">8</a>
<a href="#section-2.3.1">2.3.1</a>. Event Field .........................................<a href="#page-9">9</a>
<a href="#section-2.3.2">2.3.2</a>. E ("End") Bit .......................................<a href="#page-9">9</a>
<a href="#section-2.3.3">2.3.3</a>. R Bit ...............................................<a href="#page-9">9</a>
<a href="#section-2.3.4">2.3.4</a>. Volume Field ........................................<a href="#page-9">9</a>
<a href="#section-2.3.5">2.3.5</a>. Duration Field ......................................<a href="#page-9">9</a>
<a href="#section-2.4">2.4</a>. Optional Media Type Parameters ............................<a href="#page-10">10</a>
<a href="#section-2.4.1">2.4.1</a>. Relationship to SDP ................................<a href="#page-10">10</a>
<a href="#section-2.5">2.5</a>. Procedures ................................................<a href="#page-11">11</a>
<a href="#section-2.5.1">2.5.1</a>. Sending Procedures .................................<a href="#page-11">11</a>
<a href="#section-2.5.2">2.5.2</a>. Receiving Procedures ...............................<a href="#page-16">16</a>
<a href="#section-2.6">2.6</a>. Congestion and Performance ................................<a href="#page-19">19</a>
<a href="#section-2.6.1">2.6.1</a>. Performance Requirements ...........................<a href="#page-20">20</a>
<a href="#section-2.6.2">2.6.2</a>. Reliability Mechanisms .............................<a href="#page-20">20</a>
<a href="#section-2.6.3">2.6.3</a>. Adjusting to Congestion ............................<a href="#page-22">22</a>
<a href="#section-3">3</a>. Specification of Event Codes for DTMF Events ...................<a href="#page-23">23</a>
<a href="#section-3.1">3.1</a>. DTMF Applications .........................................<a href="#page-23">23</a>
<a href="#section-3.2">3.2</a>. DTMF Events ...............................................<a href="#page-25">25</a>
<a href="#section-3.3">3.3</a>. Congestion Considerations .................................<a href="#page-25">25</a>
<a href="#section-4">4</a>. RTP Payload Format for Telephony Tones .........................<a href="#page-26">26</a>
<a href="#section-4.1">4.1</a>. Introduction ..............................................<a href="#page-26">26</a>
<a href="#section-4.2">4.2</a>. Examples of Common Telephone Tone Signals .................<a href="#page-27">27</a>
<a href="#section-4.3">4.3</a>. Use of RTP Header Fields ..................................<a href="#page-27">27</a>
<a href="#section-4.3.1">4.3.1</a>. Timestamp ..........................................<a href="#page-27">27</a>
<a href="#section-4.3.2">4.3.2</a>. Marker Bit .........................................<a href="#page-27">27</a>
<a href="#section-4.3.3">4.3.3</a>. Payload Format .....................................<a href="#page-28">28</a>
<a href="#section-4.3.4">4.3.4</a>. Optional Media Type Parameters .....................<a href="#page-29">29</a>
<a href="#section-4.4">4.4</a>. Procedures ................................................<a href="#page-29">29</a>
<a href="#section-4.4.1">4.4.1</a>. Sending Procedures .................................<a href="#page-29">29</a>
<a href="#section-4.4.2">4.4.2</a>. Receiving Procedures ...............................<a href="#page-30">30</a>
<a href="#section-4.4.3">4.4.3</a>. Handling of Congestion .............................<a href="#page-30">30</a>
<a href="#section-5">5</a>. Examples .......................................................<a href="#page-31">31</a>
<a href="#section-6">6</a>. Security Considerations ........................................<a href="#page-38">38</a>
<span class="grey">Schulzrinne & Taylor Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-38">38</a>
<a href="#section-7.1">7.1</a>. Media Type Registrations ..................................<a href="#page-40">40</a>
<a href="#section-7.1.1">7.1.1</a>. Registration of Media Type audio/telephone-event ...<a href="#page-40">40</a>
<a href="#section-7.1.2">7.1.2</a>. Registration of Media Type audio/tone ..............<a href="#page-42">42</a>
<a href="#section-8">8</a>. Acknowledgements ...............................................<a href="#page-43">43</a>
<a href="#section-9">9</a>. References .....................................................<a href="#page-43">43</a>
<a href="#section-9.1">9.1</a>. Normative References ......................................<a href="#page-43">43</a>
<a href="#section-9.2">9.2</a>. Informative References ....................................<a href="#page-44">44</a>
<a href="#appendix-A">Appendix A</a>. Summary of Changes from <a href="./rfc2833">RFC 2833</a> ......................<a href="#page-46">46</a>
<span class="grey">Schulzrinne & Taylor Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Terminology</span>
In this document, the key words "MUST", "MUST NOT", "REQUIRED",
"SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY",
and "OPTIONAL" are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="#ref-1" title=""Key words for use in RFCs to Indicate Requirement Levels"">1</a>].
This document uses the following abbreviations:
ANSam Answer tone (amplitude modulated) [<a href="#ref-24" title=""Procedures for starting sessions of data transmission over the public switched telephone network"">24</a>]
DTMF Dual-Tone Multifrequency [<a href="#ref-10" title=""Technical features of push-button telephone sets"">10</a>]
IVR Interactive Voice Response unit
PBX Private branch exchange (telephone system)
PSTN Public Switched (circuit) Telephone Network
RTP Real-time Transport Protocol [<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>]
SDP Session Description Protocol [<a href="#ref-9" title=""SDP: Session Description Protocol"">9</a>]
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Overview</span>
This memo defines two RTP [<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>] payload formats, one for carrying
dual-tone multifrequency (DTMF) digits and other line and trunk
signals as events (<a href="#section-2">Section 2</a>), and a second one to describe general
multifrequency tones in terms only of their frequency and cadence
(<a href="#section-4">Section 4</a>). Separate RTP payload formats for telephony tone signals
are desirable since low-rate voice codecs cannot be guaranteed to
reproduce these tone signals accurately enough for automatic
recognition. In addition, tone properties such as the phase
reversals in the ANSam tone will not survive speech coding. Defining
separate payload formats also permits higher redundancy while
maintaining a low bit rate. Finally, some telephony events such as
"on-hook" occur out-of-band and cannot be transmitted as tones.
The remainder of this section provides the motivation for defining
the payload types described in this document. <a href="#section-2">Section 2</a> defines the
payload format and associated procedures for use of named events.
<a href="#section-3">Section 3</a> describes the events for which event codes are defined in
this document. <a href="#section-4">Section 4</a> describes the payload format and associated
procedures for tone representations. <a href="#section-5">Section 5</a> provides some
examples of encoded events, tones, and combined payloads. <a href="#section-6">Section 6</a>
deals with security considerations. <a href="#section-7">Section 7</a> defines the IANA
requirements for registration of event codes for named telephone
<span class="grey">Schulzrinne & Taylor Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
events, establishes the initial content of that registry, and
provides the media type registrations for the two payload formats.
<a href="#appendix-A">Appendix A</a> describes the changes from <a href="./rfc2833">RFC 2833</a> [<a href="#ref-12" title=""RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals"">12</a>] and in particular
indicates the disposition of the event codes defined in [<a href="#ref-12" title=""RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals"">12</a>].
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Potential Applications</span>
The payload formats described here may be useful in a number of
different scenarios.
On the sending side, there are two basic possibilities: either the
sending side is an end system that originates the signals itself, or
it is a gateway with the task of propagating incoming telephone
signals into the Internet.
On the receiving side, there are more possibilities. The first is
that the receiver must propagate tone signalling accurately into the
PSTN for machine consumption. One example of this is a gateway
passing DTMF tones to an IVR. In this scenario, frequencies,
amplitudes, tone durations, and the durations of pauses between tones
are all significant, and individual tone signals must be delivered
reliably and in order.
In a second receiving scenario, the receiver must play out tones for
human consumption. Typically, rather than a series of tone signals
each with its own meaning, the content will consist of a single tone
played out continuously or a single sequence of tones and possibly
silence, repeated cyclically for some period of time. Often the end
of the tone playout will be triggered by an event fed back in the
other direction, using either in- or out-of-band means. Examples of
this are dial tone or busy tone.
The relationship between position in the network and the tones to be
played out is a complicating factor in this scenario. In the phone
network, tones are generated at different places, depending on the
switching technology and the nature of the tone. This determines,
for example, whether a person making a call to a foreign country
hears her local tones she is familiar with or the tones as used in
the country called.
For analog lines, dial tone is always generated by the local switch.
Integrated Services Digital Network (ISDN) terminals may generate
dial tone locally and then send a Q.931 [<a href="#ref-22" title=""ISDN user-network interface layer 3 specification for basic call control"">22</a>] SETUP message containing
the dialed digits. If the terminal just sends a SETUP message
without any Called Party digits, then the switch does digit
collection (provided by the terminal as KEYPAD key press digit
information within Called Party or Keypad Facility Information
Elements (IEs) of INFORMATION messages), and provides dial tone over
<span class="grey">Schulzrinne & Taylor Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
the B-channel. The terminal can either use the audio signal on the
B-channel or use the Q.931 messages to trigger locally generated dial
tone.
Ringing tone (also called ringback tone) is generated by the local
switch at the callee, with a one-way voice path opened up as soon as
the callee's phone rings. (This reduces the chance of clipping the
called party's response just after answer. It also permits pre-
answer announcements or in-band call-progress indications to reach
the caller before or in lieu of a ringing tone.) Congestion tone and
special information tones can be generated by any of the switches
along the way, and may be generated by the caller's switch based on
ISDN User Part (ISUP) messages received. Busy tone is generated by
the caller's switch, triggered by the appropriate ISUP message, for
analog instruments, or the ISDN terminal.
In the third scenario, an end system is directly connected to the
Internet and processes the incoming media stream directly. There is
no need to regenerate tone signals, so that time alignment and power
levels are not relevant. These systems rely on sending systems to
generate events in place of tones and do not perform their own audio
waveform analysis. An example of such a system is an Internet
interactive voice response (IVR) system.
In circumstances where exact timing alignment between the audio
stream and the DTMF digits or other events is not important and data
is sent unicast, as in the IVR example, it may be preferable to use a
reliable control protocol rather than RTP packets. In those
circumstances, this payload format would not be used.
Note that in a number of these cases it is possible that the gateway
or end system will be both a sender and receiver of telephone
signals. Sometimes the same class of signals will be sent as
received -- in the case of "RTP trunking" or voice-band data, for
instance. In other cases, such as that of an end system serving
analogue lines, the signals sent will be in a different class from
those received.
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Events, States, Tone Patterns, and Voice-Encoded Tones</span>
This document provides the means for in-band transport over the
Internet of two broad classes of signalling information: in-band
tones or tone sequences, and signals sent out-of-band in the PSTN.
Tone signals can be carried using any of the three methods listed
below. Depending on the application, it may be desirable to carry
the signalling information in more than one form at once.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
1. The gateway or end system can change to a higher-bandwidth codec
such as G.711 [<a href="#ref-19" title=""Pulse code modulation (PCM) of voice frequencies"">19</a>] when tone signals are to be conveyed. See new
ITU-T Recommendation V.152 [<a href="#ref-26" title=""Procedures for supporting Voice-Band Data over IP Networks"">26</a>] for a formal treatment of this
approach. Alternatively, for fax, text, or modem signals
respectively, a specialized transport such as T.38 [<a href="#ref-23" title=""Procedures for real- time Group 3 facsimile communication over IP networks"">23</a>], <a href="./rfc4103">RFC 4103</a>
[<a href="#ref-15" title=""RTP Payload for Text Conversation"">15</a>], or V.150.1 modem relay [<a href="#ref-25" title=""Modem-over-IP networks: Procedures for the end-to-end connection of V-series DCEs"">25</a>] may be used. Finally, 64
kbit/s channels may be carried transparently using the <a href="./rfc4040">RFC 4040</a>
Clearmode payload type [<a href="#ref-14" title=""RTP Payload Format for a 64 kbit/s Transparent Call"">14</a>]. These methods are out of scope of
the present document, but may be used along with the payload
types defined here.
2. The sending gateway can simply measure the frequency components
of the voice-band signals and transmit this information to the
RTP receiver using the tone representation defined in this
document (<a href="#section-4">Section 4</a>). In this mode, the gateway makes no attempt
to discern the meaning of the tones, but simply distinguishes
tones from speech signals. An end system may use the same
approach using configured rather than measured frequencies.
All tone signals in use in the PSTN and meant for human
consumption are sequences of simple combinations of sine waves,
either added or modulated. (However, some modem signals such as
the ANSam tone [<a href="#ref-24" title=""Procedures for starting sessions of data transmission over the public switched telephone network"">24</a>] or systems dependent on phase shift keying
cannot be conveyed so simply.)
3. As a third option, a sending gateway can recognize tones such as
ringing or busy tone or DTMF digit '0', and transmit a code that
identifies them using the telephone-event payload defined in this
document (<a href="#section-2">Section 2</a>). The receiver then produces a tone signal
or other indication appropriate to the signal. Generally, since
the recognition of signals at the sender often depends on their
on/off pattern or the sequence of several tones, this recognition
can take several seconds. On the other hand, the gateway may
have access to the actual signalling information that generates
the tones and thus can generate the RTP packet immediately,
without the detour through acoustic signals.
The third option (use of named events) is the only feasible method
for transmitting out-of-band PSTN signals as content within RTP
sessions.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. RTP Payload Format for Named Telephone Events</span>
<span class="h3"><a class="selflink" id="section-2.1" href="#section-2.1">2.1</a>. Introduction</span>
The RTP payload format for named telephone events is designated as
"telephone-event", the media type as "audio/telephone-event". In
accordance with current practice, this payload format does not have a
static payload type number, but uses an RTP payload type number
established dynamically and out-of-band. The default clock frequency
is 8000 Hz, but the clock frequency can be redefined when assigning
the dynamic payload type.
Named telephone events are carried as part of the audio stream and
MUST use the same sequence number and timestamp base as the regular
audio channel to simplify the generation of audio waveforms at a
gateway. The named telephone-event payload type can be considered to
be a very highly-compressed audio codec and is treated the same as
other codecs.
<span class="h3"><a class="selflink" id="section-2.2" href="#section-2.2">2.2</a>. Use of RTP Header Fields</span>
<span class="h4"><a class="selflink" id="section-2.2.1" href="#section-2.2.1">2.2.1</a>. Timestamp</span>
The event duration described in <a href="#section-2.5">Section 2.5</a> begins at the time given
by the RTP timestamp. For events that span multiple RTP packets, the
RTP timestamp identifies the beginning of the event, i.e., several
RTP packets may carry the same timestamp. For long-lasting events
that have to be split into segments (see below, <a href="#section-2.5.1.3">Section 2.5.1.3</a>), the
timestamp indicates the beginning of the segment.
<span class="h4"><a class="selflink" id="section-2.2.2" href="#section-2.2.2">2.2.2</a>. Marker Bit</span>
The RTP marker bit indicates the beginning of a new event. For long-
lasting events that have to be split into segments (see below,
<a href="#section-2.5.1.3">Section 2.5.1.3</a>), only the first segment will have the marker bit
set.
<span class="h3"><a class="selflink" id="section-2.3" href="#section-2.3">2.3</a>. Payload Format</span>
The payload format for named telephone events is shown in Figure 1.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| event |E|R| volume | duration |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 1: Payload Format for Named Events
<span class="grey">Schulzrinne & Taylor Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h4"><a class="selflink" id="section-2.3.1" href="#section-2.3.1">2.3.1</a>. Event Field</span>
The event field is a number between 0 and 255 identifying a specific
telephony event. An IANA registry of event codes for this field has
been established (see IANA Considerations, <a href="#section-7">Section 7</a>). The initial
content of this registry consists of the events defined in <a href="#section-3">Section 3</a>.
<span class="h4"><a class="selflink" id="section-2.3.2" href="#section-2.3.2">2.3.2</a>. E ("End") Bit</span>
If set to a value of one, the "end" bit indicates that this packet
contains the end of the event. For long-lasting events that have to
be split into segments (see below, <a href="#section-2.5.1.3">Section 2.5.1.3</a>), only the final
packet for the final segment will have the E bit set.
<span class="h4"><a class="selflink" id="section-2.3.3" href="#section-2.3.3">2.3.3</a>. R Bit</span>
This field is reserved for future use. The sender MUST set it to
zero, and the receiver MUST ignore it.
<span class="h4"><a class="selflink" id="section-2.3.4" href="#section-2.3.4">2.3.4</a>. Volume Field</span>
For DTMF digits and other events representable as tones, this field
describes the power level of the tone, expressed in dBm0 after
dropping the sign. Power levels range from 0 to -63 dBm0. Thus,
larger values denote lower volume. This value is defined only for
events for which the documentation indicates that volume is
applicable. For other events, the sender MUST set volume to zero and
the receiver MUST ignore the value.
<span class="h4"><a class="selflink" id="section-2.3.5" href="#section-2.3.5">2.3.5</a>. Duration Field</span>
The duration field indicates the duration of the event or segment
being reported, in timestamp units, expressed as an unsigned integer
in network byte order. For a non-zero value, the event or segment
began at the instant identified by the RTP timestamp and has so far
lasted as long as indicated by this parameter. The event may or may
not have ended. If the event duration exceeds the maximum
representable by the duration field, the event is split into several
contiguous segments as described below (<a href="#section-2.5.1.3">Section 2.5.1.3</a>).
The special duration value of zero is reserved to indicate that the
event lasts "forever", i.e., is a state and is considered to be
effective until updated. A sender MUST NOT transmit a zero duration
for events other than those defined as states. The receiver SHOULD
ignore an event report with zero duration if the event is not a
state.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Events defined as states MAY contain a non-zero duration, indicating
that the sender intends to refresh the state before the time duration
has elapsed ("soft state").
For a sampling rate of 8000 Hz, the duration field is sufficient
to express event durations of up to approximately 8 seconds.
<span class="h3"><a class="selflink" id="section-2.4" href="#section-2.4">2.4</a>. Optional Media Type Parameters</span>
As indicated in the media type registration for named events in
<a href="#section-7.1.1">Section 7.1.1</a>, the telephone-event media type supports two optional
parameters: the "events" parameter and the "rate" parameter.
The "events" parameter lists the events supported by the
implementation. Events are listed as one or more comma-separated
elements. Each element can be either a single integer providing the
value of an event code or an integer followed by a hyphen and a
larger integer, presenting a range of consecutive event code values.
The list does not have to be sorted. No white space is allowed in
the argument. The union of all of the individual event codes and
event code ranges designates the complete set of event numbers
supported by the implementation.
The "rate" parameter describes the sampling rate, in Hertz, and hence
the units for the RTP timestamp and event duration fields. The
number is written as an integer. If omitted, the default value is
8000 Hz.
<span class="h4"><a class="selflink" id="section-2.4.1" href="#section-2.4.1">2.4.1</a>. Relationship to SDP</span>
The recommended mapping of media type optional parameters to SDP is
given in <a href="./rfc3555#section-3">Section 3 of RFC 3555</a> [<a href="#ref-6" title=""MIME Type Registration of RTP Payload Formats"">6</a>]. The "rate" media type parameter
for the named event payload type follows this convention: it is
expressed as usual as the <clock rate> component of the a=rtpmap:
attribute line.
The "events" media type parameter deviates from the convention
suggested in <a href="./rfc3555">RFC 3555</a> because it omits the string "events=" before
the list of supported events.
a=fmtp:<format> <list of values>
The list of values has the format and meaning described above.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
For example, if the payload format uses the payload type number 100,
and the implementation can handle the DTMF tones (events 0 through
15) and the dial and ringing tones (assuming as an example that these
were defined as events with codes 66 and 70, respectively), it would
include the following description in its SDP message:
m=audio 12346 RTP/AVP 100
a=rtpmap:100 telephone-event/8000
a=fmtp:100 0-15,66,70
The following sample media type definition corresponds to the SDP
example above:
audio/telephone-event;events="0-15,66,70";rate="8000"
<span class="h3"><a class="selflink" id="section-2.5" href="#section-2.5">2.5</a>. Procedures</span>
This section defines the procedures associated with the named event
payload type. Additional procedures may be specified in the
documentation associated with specific event codes.
<span class="h4"><a class="selflink" id="section-2.5.1" href="#section-2.5.1">2.5.1</a>. Sending Procedures</span>
<span class="h5"><a class="selflink" id="section-2.5.1.1" href="#section-2.5.1.1">2.5.1.1</a>. Negotiation of Payloads</span>
Events are usually sent in combination with or alternating with other
payload types. Payload negotiation may specify separate event and
other payload streams, or it may specify a combined stream that mixes
other payload types with events using <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] redundancy
headers. The purpose of using a combined stream may be for debugging
or to ease the transition between general audio and events.
Negotiation of payloads between sender and receiver is achieved by
out-of-band means, using SDP, for example.
The sender SHOULD indicate what events it supports, using the
optional "events" parameter associated with the telephone-event media
type. If the sender receives an "events" parameter from the
receiver, it MUST restrict the set of events it sends to those listed
in the received "events" parameter. For backward compatibility, if
no "events" parameter is received, the sender SHOULD assume support
for the DTMF events 0-15 but for no other events.
Events MAY be sent in combination with older events using <a href="./rfc2198">RFC 2198</a>
[<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] redundancy. <a href="#section-2.5.1.4">Section 2.5.1.4</a> describes how this can be used to
avoid packet and RTP header overheads when retransmitting final event
reports. <a href="#section-2.6">Section 2.6</a> discusses the use of additional levels of <a href="./rfc2198">RFC</a>
<a href="./rfc2198">2198</a> redundancy to increase the probability that at least one copy of
<span class="grey">Schulzrinne & Taylor Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
the report of the end of an event reaches the receiver. The
following SDP shows an example of such usage, where G.711 audio
appears in a separate stream, and the primary component of the
redundant payload is events.
m=audio 12344 RTP/AVP 99
a=rtpmap:99 pcmu/8000
m=audio 12346 RTP/AVP 100 101
a=rtpmap:100 red/8000/1
a=fmtp:100 101/101/101
a=rtpmap:101 telephone-event/8000
a=fmtp:101 0-15
When used in accordance with the offer-answer model (<a href="./rfc3264">RFC 3264</a> [<a href="#ref-4" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">4</a>]),
the SDP a=ptime: attribute indicates the packetization period that
the author of the session description expects when receiving media.
This value does not have to be the same in both directions. The
appropriate period may vary with the application, since increased
packetization periods imply increased end-to-end response times in
instances where one end responds to events reported from the other.
Negotiation of telephone-events sessions using SDP MAY specify such
differences by separating events corresponding to different
applications into different streams. In the example below, events
0-15 are DTMF events, which have a fairly wide tolerance on timing.
Events 32-49 and 52-60 are events related to data transmission and
are subject to end-to-end response time considerations. As a result,
they are assigned a smaller packetization period than the DTMF
events.
m=audio 12344 RTP/AVP 99
a=rtpmap:99 telephone-event/8000
a=fmtp:99 0-15
a=ptime:50
m=audio 12346 RTP/AVP 100
a=rtpmap:100 telephone-event/8000
a=fmtp:100 32-49,52-60
a=ptime:30
For further discussion of packetization periods see <a href="#section-2.6.3">Section 2.6.3</a>.
<span class="h5"><a class="selflink" id="section-2.5.1.2" href="#section-2.5.1.2">2.5.1.2</a>. Transmission of Event Packets</span>
DTMF digits and other named telephone events are carried as part of
the audio stream, and they MUST use the same sequence number and
timestamp base as the regular audio channel to simplify the
generation of audio waveforms at a gateway.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
An audio source SHOULD start transmitting event packets as soon as it
recognizes an event and continue to send updates until the event has
ended. The update packets MUST have the same RTP timestamp value as
the initial packet for the event, but the duration MUST be increased
to reflect the total cumulative duration since the beginning of the
event.
The first packet for an event MUST have the M bit set. The final
packet for an event MUST have the E bit set, but setting of the "E"
bit MAY be deferred until the final packet is retransmitted (see
<a href="#section-2.5.1.4">Section 2.5.1.4</a>). Intermediate packets for an event MUST NOT have
either the M bit or the E bit set.
Sending of a packet with the E bit set is OPTIONAL if the packet
reports two events that are defined as mutually exclusive states, or
if the final packet for one state is immediately followed by a packet
reporting a mutually exclusive state. (For events defined as states,
the appearance of a mutually exclusive state implies the end of the
previous state.)
A source has wide latitude as to how often it sends event updates. A
natural interval is the spacing between non-event audio packets.
(Recall that a single RTP packet can contain multiple audio frames
for frame-based codecs and that the packet interval can vary during a
session.) Alternatively, a source MAY decide to use a different
spacing for event updates, with a value of 50 ms RECOMMENDED.
Timing information is contained in the RTP timestamp, allowing
precise recovery of inter-event times. Thus, the sender does not in
theory need to maintain precise or consistent time intervals between
event packets. However, the sender SHOULD minimize the need for
buffering at the receiving end by sending event reports at constant
intervals.
DTMF digits and other tone events are sent incrementally to avoid
having the receiver wait for the completion of the event. In some
cases (for example, data session startup protocols), waiting until
the end of a tone before reporting it will cause the session to
fail. In other cases, it will simply cause undesirable delays in
playout at the receiving end.
For robustness, the sender SHOULD retransmit "state" events
periodically.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h5"><a class="selflink" id="section-2.5.1.3" href="#section-2.5.1.3">2.5.1.3</a>. Long-Duration Events</span>
If an event persists beyond the maximum duration expressible in the
duration field (0xFFFF), the sender MUST send a packet reporting this
maximum duration but MUST NOT set the E bit in this packet. The
sender MUST then begin reporting a new "segment" with the RTP
timestamp set to the time at which the previous segment ended and the
duration set to the cumulative duration of the new segment. The M
bit of the first packet reporting the new segment MUST NOT be set.
The sender MUST repeat this procedure as required until the end of
the complete event has been reached. The final packet for the
complete event MUST have the E bit set (either on initial
transmission or on retransmission as described below).
<span class="h6"><a class="selflink" id="section-2.5.1.3.1" href="#section-2.5.1.3.1">2.5.1.3.1</a>. Exceptional Procedure for Combined Payloads</span>
If events are combined as a redundant payload with another payload
type using <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] redundancy, the above procedure SHALL be
applied, but using a maximum duration that ensures that the timestamp
offset of the oldest generation of events in an <a href="./rfc2198">RFC 2198</a> packet never
exceeds 0x3FFF. If the sender is using a constant packetization
period, the maximum segment duration can be calculated from the
following formula:
maximum duration = 0x3FFF - (R-1)*(packetization period in
timestamp units)
where R is the highest redundant layer number consisting of event
payload.
The <a href="./rfc2198">RFC 2198</a> redundancy header timestamp offset value is only 14
bits, compared with the 16 bits in the event payload duration
field. Since with other payloads the RTP timestamp typically
increments for each new sample, the timestamp offset value becomes
limiting on reported event duration. The limit becomes more
constraining when older generations of events are also included in
the combined payload.
<span class="h5"><a class="selflink" id="section-2.5.1.4" href="#section-2.5.1.4">2.5.1.4</a>. Retransmission of Final Packet</span>
The final packet for each event and for each segment SHOULD be sent a
total of three times at the interval used by the source for updates.
This ensures that the duration of the event or segment can be
recognized correctly even if an instance of the last packet is lost.
A sender MAY use <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] with up to two levels of redundancy to
combine retransmissions with reports of new events, thus saving on
header overheads. In this usage, the primary payload is new event
<span class="grey">Schulzrinne & Taylor Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
reports, while the first and (if necessary) second levels of
redundancy report first and second retransmissions of final event
reports. Within a session negotiated to allow such usage, packets
containing the <a href="./rfc2198">RFC 2198</a> payload SHOULD NOT be sent except when both
primary and retransmitted reports are to be included. All other
packets of the session SHOULD contain only the simple, non-redundant
telephone-event payload. Note that the expected proportion of simple
versus redundant packets affects the order in which they should be
specified on an SDP m= line.
There is little point in sending initial or interim event reports
redundantly because each succeeding packet describes the event
fully (except for typically irrelevant variations in volume).
A sender MAY delay setting the E bit until retransmitting the last
packet for a tone, rather than setting the bit on its first
transmission. This avoids having to wait to detect whether the tone
has indeed ended. Once the sender has set the E bit for a packet, it
MUST continue to set the E bit for any further retransmissions of
that packet.
<span class="h5"><a class="selflink" id="section-2.5.1.5" href="#section-2.5.1.5">2.5.1.5</a>. Packing Multiple Events into One Packet</span>
Multiple named events can be packed into a single RTP packet if and
only if the events are consecutive and contiguous, i.e., occur
without overlap and without pause between them, and if the last event
packed into a packet occurs quickly enough to avoid excessive delays
at the receiver.
This approach is similar to having multiple frames of frame-based
audio in one RTP packet.
The constraint that packed events not overlap implies that events
designated as states can be followed in a packet only by other state
events that are mutually exclusive to them. The constraint itself is
needed so that the beginning time of each event can be calculated at
the receiver.
In a packet containing events packed in this way, the RTP timestamp
MUST identify the beginning of the first event or segment in the
packet. The M bit MUST be set if the packet records the beginning of
at least one event. (This will be true except when the packet
carries the end of one segment and the beginning of the next segment
of the same long-lasting event.) The E bit and duration for each
event in the packet MUST be set using the same rules as if that event
were the only event contained in the packet.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h5"><a class="selflink" id="section-2.5.1.6" href="#section-2.5.1.6">2.5.1.6</a>. RTP Sequence Number</span>
The RTP sequence number MUST be incremented by one in each successive
RTP packet sent. Incrementing applies to retransmitted as well as
initial instances of event reports, to permit the receiver to detect
lost packets for RTP Control Protocol (RTCP) receiver reports.
<span class="h4"><a class="selflink" id="section-2.5.2" href="#section-2.5.2">2.5.2</a>. Receiving Procedures</span>
<span class="h5"><a class="selflink" id="section-2.5.2.1" href="#section-2.5.2.1">2.5.2.1</a>. Indication of Receiver Capabilities Using SDP</span>
Receivers can indicate which named events they can handle, for
example, by using the Session Description Protocol (<a href="./rfc4566">RFC 4566</a> [<a href="#ref-9" title=""SDP: Session Description Protocol"">9</a>]).
SDP descriptions using the event payload MUST contain an fmtp format
attribute that lists the event values that the receiver can process.
<span class="h5"><a class="selflink" id="section-2.5.2.2" href="#section-2.5.2.2">2.5.2.2</a>. Playout of Tone Events</span>
In the gateway scenario, an Internet telephony gateway connecting a
packet voice network to the PSTN re-creates the DTMF or other tones
and injects them into the PSTN. Since, for example, DTMF digit
recognition takes several tens of milliseconds, the first few
milliseconds of a digit will arrive as regular audio packets. Thus,
careful time and power (volume) alignment between the audio samples
and the events is needed to avoid generating spurious digits at the
receiver. The receiver may also choose to delay playout of the tones
by some small interval after playout of the preceding audio has
ended, to ensure that downstream equipment can discriminate the tones
properly.
Some implementations send events and encoded audio packets (e.g.,
PCMU or the codec used for speech signals) for the same time instant
for the duration of the event. It is RECOMMENDED that gateways
render only the telephone-event payload once it is received, since
the audio may contain spurious tones introduced by the audio
compression algorithm. However, it is anticipated that these extra
tones in general should not interfere with recognition at the far
end.
Receiver implementations MAY use different algorithms to create
tones, including the two described here. (Note that not all
implementations have the need to re-create a tone; some may only care
about recognizing the events.) With either algorithm, a receiver may
impose a playout delay to provide robustness against packet loss or
delay. The tradeoff between playout delay and other factors is
discussed further in <a href="#section-2.6.3">Section 2.6.3</a>.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
In the first algorithm, the receiver simply places a tone of the
given duration in the audio playout buffer at the location indicated
by the timestamp. As additional packets are received that extend the
same tone, the waveform in the playout buffer is extended
accordingly. (Care has to be taken if audio is mixed, i.e., summed,
in the playout buffer rather than simply copied.) Thus, if a packet
in a tone lasting longer than the packet interarrival time gets lost
and the playout delay is short, a gap in the tone may occur.
Alternatively, the receiver can start a tone and play it until one of
the following occurs:
o it receives a packet with the E bit set;
o it receives the next tone, distinguished by a different timestamp
value (noting that new segments of long-duration events also
appear with a new timestamp value);
o it receives an alternative non-event media stream (assuming none
was being received while the event stream was active); or
o a given time period elapses.
This is more robust against packet loss, but may extend the tone
beyond its original duration if all retransmissions of the last
packet in an event are lost. Limiting the time period of extending
the tone is necessary to avoid that a tone "gets stuck". This
algorithm is not a license for senders to set the duration field to
zero; it MUST be set to the current duration as described, since this
is needed to create accurate events if the first event packet is
lost, among other reasons.
Regardless of the algorithm used, the tone SHOULD NOT be extended by
more than three packet interarrival times. A slight extension of
tone durations and shortening of pauses is generally harmless.
A receiver SHOULD NOT restart a tone once playout has stopped. It
MAY do so if the tone is of a type meant for human consumption or is
one for which interruptions will not cause confusion at the receiving
device.
If a receiver receives an event packet for an event that it is not
currently playing out and the packet does not have the M bit set,
earlier packets for that event have evidently been lost. This can be
confirmed by gaps in the RTP sequence number. The receiver MAY
determine on the basis of retained history and the timestamp and
<span class="grey">Schulzrinne & Taylor Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
event code of the current packet that it corresponds to an event
already played out and lapsed. In that case, further reports for the
event MUST be ignored, as indicated in the previous paragraph.
If, on the other hand, the event has not been played out at all, the
receiver MAY attempt to play the event out to the complete duration
indicated in the event report. The appropriate behavior will depend
on the event type, and requires consideration of the relationship of
the event to audio media flows and whether correct event duration is
essential to the correct operation of the media session.
A receiver SHOULD NOT rely on a particular event packet spacing, but
instead MUST use the event timestamps and durations to determine
timing and duration of playout.
The receiver MUST calculate jitter for RTCP receiver reports based on
all packets with a given timestamp. Note: The jitter value should
primarily be used as a means for comparing the reception quality
between two users or two time periods, not as an absolute measure.
If a zero volume is indicated for an event for which the volume field
is defined, then the receiver MAY reconstruct the volume from the
volume of non-event audio or MAY use the nominal value specified by
the ITU Recommendation or other document defining the tone. This
ensures backwards compatibility with <a href="./rfc2833">RFC 2833</a> [<a href="#ref-12" title=""RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals"">12</a>], where the volume
field was defined only for DTMF events.
<span class="h5"><a class="selflink" id="section-2.5.2.3" href="#section-2.5.2.3">2.5.2.3</a>. Long-Duration Events</span>
If an event report is received with duration equal to the maximum
duration expressible in the duration field (0xFFFF) and the E bit for
the report is not set, the event report may mark the end of a segment
generated according to the procedures of <a href="#section-2.5.1.3">Section 2.5.1.3</a>. If another
report for the same event type is received, the receiver MUST compare
the RTP timestamp for the new event with the sum of the RTP timestamp
of the previous report plus the duration (0xFFFF). The receiver uses
the absence of a gap between the events to detect that it is
receiving a single long-duration event.
The total duration of a long-duration event is (obviously) the sum of
the durations of the segments used to report it. This is equal to
the duration of the final segment (as indicated in the final packet
for that segment), plus 0xFFFF multiplied by the number of segments
preceding the final segment.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h6"><a class="selflink" id="section-2.5.2.3.1" href="#section-2.5.2.3.1">2.5.2.3.1</a>. Exceptional Procedure for Combined Payloads</span>
If events are combined as a redundant payload with another payload
type using <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] redundancy, segments are generated at
intervals of 0x3FFF or less, rather than 0xFFFF, as required by the
procedures of <a href="#section-2.5.1.3.1">Section 2.5.1.3.1</a> in this case. If a receiver is using
the events component of the payload, event duration may be only an
approximate indicator of division into segments, but the lack of an E
bit and the adjacency of two reports with the same event code are
strong indicators in themselves.
<span class="h5"><a class="selflink" id="section-2.5.2.4" href="#section-2.5.2.4">2.5.2.4</a>. Multiple Events in a Packet</span>
The procedures of <a href="#section-2.5.1.5">Section 2.5.1.5</a> require that if multiple events are
reported in the same packet, they are contiguous and non-overlapping.
As a result, it is not strictly necessary for the receiver to know
the start times of the events following the first one in order to
play them out -- it needs only to respect the duration reported for
each event. Nevertheless, if knowledge of the start time for a given
event after the first one is required, it is equal to the sum of the
start time of the preceding event plus the duration of the preceding
event.
<span class="h5"><a class="selflink" id="section-2.5.2.5" href="#section-2.5.2.5">2.5.2.5</a>. Soft States</span>
If the duration of a soft state event expires, the receiver SHOULD
consider the value of the state to be "unknown" unless otherwise
indicated in the event documentation.
<span class="h3"><a class="selflink" id="section-2.6" href="#section-2.6">2.6</a>. Congestion and Performance</span>
Packet transmission through the Internet is marked by occasional
periods of congestion lasting on the order of second, during which
network delay, jitter, and packet loss are all much higher than they
are in between these periods. Reference [28] characterizes this
phenomenon. Well-behaved applications are expected, preferably, to
reduce their demands on the network during such periods of
congestion. At the least, they should not increase their demands.
This section explores both application performance and the
possibilities for good behavior in the face of congestion.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h4"><a class="selflink" id="section-2.6.1" href="#section-2.6.1">2.6.1</a>. Performance Requirements</span>
Typically, an implementation of the telephone-event payload will aim
to limit the rate at which each of the following impairments occurs:
a. an event encoded at the sender fails to be played out at the
receiver, either because the event report is lost or because it
arrives after playout of later content has started;
b. the start of playout of an event at the receiver is delayed
relative to other events or other media operating on the same
timestamp base;
c. the duration of playout of a given event differs from the correct
duration as detected at the sender by more than a given amount;
d. gaps occur in playout of a given event;
e. end-to-end delay for the media stream exceeds a given value.
The relative importance of these constraints varies between
applications.
<span class="h4"><a class="selflink" id="section-2.6.2" href="#section-2.6.2">2.6.2</a>. Reliability Mechanisms</span>
To improve reliability, all payload types including telephone-events
can use a jitter buffer, i.e., impose a playout delay, at the
receiving end. This mechanism addresses the first four requirements
listed above, but at the expense of the last one.
The named event procedures provide two complementary redundancy
mechanisms to deal with lost packets:
a. Intra-event updates:
Events that last longer than one packetization period (e.g., 50
ms) are updated periodically, so that the receiver can
reconstruct the event and its duration if it receives any of the
update packets, albeit with delay.
During an event, the RTP event payload format provides
incremental updates on the event. The error resiliency afforded
by this mechanism depends on whether the first or second
algorithm in <a href="#section-2.5.2.2">Section 2.5.2.2</a> is used and on the playout delay at
the receiver. For example, if the receiver uses the first
algorithm and only places the current duration of tone signal in
the playout buffer, for a playout delay of 120 ms and a
<span class="grey">Schulzrinne & Taylor Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
packetization interval of 50 ms, two packets in a row can get
lost without causing a premature end of the tone generated.
b. Repeat last event packet:
As described in <a href="#section-2.5.1.4">Section 2.5.1.4</a>, the last report for an event is
transmitted a total of three times. This mechanism adds
robustness to the reporting of the end of an event.
It may be necessary to extend the level of redundancy to achieve
requirement a) (in <a href="#section-2.6.1">Section 2.6.1</a>) in a specific network
environment. Taking the 25-30% loss rate during congestion
periods illustrated in [28] as typical, and setting an objective
that at least 99% of end-of-event reports will eventually get
through to the receiver under these conditions, simple
probability calculations indicate that each event completion has
to be reported four times. This is one more level of redundancy
than required by the basic "Repeat last event packet" algorithm.
Of course, the objective is probably unrealistically stringent;
it was chosen to make a point.
Where <a href="#section-2.5.1.4">Section 2.5.1.4</a> indicates that it is appropriate to use the
<a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] audio redundancy mechanism to carry retransmissions
of final event reports, this mechanism MAY also be used to extend
the number of final report retransmissions. This is done by
using more than two levels of redundancy when necessary. The use
of <a href="./rfc2198">RFC 2198</a> helps to mitigate the extra bandwidth demands that
would be imposed simply by retransmitting final event packets
more than three times.
These two redundancy mechanisms clearly address requirement a) in the
previous section. They also help meet requirement c), to the extent
that the redundant packets arrive before playout of the events they
report is due to expire. They are not helpful in meeting the other
requirements, although they do not directly cause impairments
themselves in the way that a large jitter buffer increases end-to-end
delay.
The playout algorithm is an additional mechanism for meeting the
performance requirements. In particular, using the second algorithm
in <a href="#section-2.5.2.2">Section 2.5.2.2</a> will meet requirement d) of the previous section
by preventing gaps in playout, but at the potential cost of increases
in duration (requirement c)).
Finally, there is an interaction between the packetization period
used by a sender, the playout delay used by the receiver, and the
vulnerability of an event flow to packet losses. Assuming packet
losses are independent, a shorter packetization interval means that
<span class="grey">Schulzrinne & Taylor Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
the receiver can use a smaller playout delay to recover from a given
number of consecutive packet losses, at any stage of event playout.
This improves end-to-end delays in applications where that matters.
In view of the tradeoffs between the different reliability
mechanisms, documentation of specific events SHOULD include a
discussion of the appropriate design decisions for the applications
of those events. This mandate is repeated in the section on IANA
considerations.
<span class="h4"><a class="selflink" id="section-2.6.3" href="#section-2.6.3">2.6.3</a>. Adjusting to Congestion</span>
So far, the discussion has been about meeting performance
requirements. However, there is also the question of whether
applications of events can adapt to congestion to the point that they
reduce their demands on the networks during congestion. In theory
this can be done for events by increasing the packetization interval,
so that fewer packets are sent per second. This has to be
accompanied by an increased playout delay at the receiving end.
Coordination between the two ends for this purpose is an interesting
issue in itself. If it is done, however, such an action implies a
one-time gap or extended playout of an event when the packetization
interval is first extended, as well as increased end-to-end delay
during the whole period of increased playout delay.
The benefit from such a measure varies primarily depending on the
average duration of the events being handled. In the worst case, as
a first example shows, the reduction in aggregate bandwidth usage due
to an increased packetization interval may be quite modest. Suppose
the average event duration is 3.33 ms (V.21 bits, for instance).
Suppose further that four transmissions in total are required for a
given event report to meet the loss objective. Table 1 shows the
impact of varying packetization intervals on the aggregate bit rate
of the media stream.
+--------------------+-----------+---------------+------------------+
| Packetization | Packets/s | IP Packet | Total IP Bit |
| Interval (ms) | | Size (bits) | Rate (bits/s) |
+--------------------+-----------+---------------+------------------+
| 50 | 20 | 2440 | 48800 |
| 33.3 | 30 | 1800 | 54000 |
| 25 | 40 | 1480 | 59200 |
| 20 | 50 | 1288 | 64400 |
+--------------------+-----------+---------------+------------------+
Table 1: Data Rate at the IP Level versus Packetization Interval
(three retransmissions, 3.33 ms per event)
<span class="grey">Schulzrinne & Taylor Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
As can be seen, a doubling of the interval (from 25 to 50 ms) drops
aggregate bit rate by about 20% while increasing end-to-end delay by
25 ms and causing a one-time gap of the same amount. (Extending the
playout of a specific V.21 tone event is out of the question, so the
first algorithm of <a href="#section-2.5.2.2">Section 2.5.2.2</a> must be used in this application.)
The reduction in number of packets per second with longer
packetization periods is countered by the increase in packet size due
to the increase in number of events per packet.
For events of longer duration, the reduction in bandwidth is more
proportional to the increase in packetization interval. The loss of
final event reports may also be less critical, so that lower
redundancy levels are acceptable. Table 2 shows similar data to
Table 1, but assuming 70-ms events separated by 50 ms of silence (as
in an idealized DTMF-based text messaging session) with only the
basic two retransmissions for event completions.
+--------------------+-----------+---------------+------------------+
| Packetization | Packets/s | IP Packet | Total IP Bit |
| Interval (ms) | | Size (bits) | Rate (bits/s) |
+--------------------+-----------+---------------+------------------+
| 50 | 20 | 448/520 | 10040 |
| 33.3 | 30 | 448/520 | 14280 |
| 25 | 40 | 448/520 | 18520 |
| 20 | 50 | 448 | 22400 |
+--------------------+-----------+---------------+------------------+
Table 2: Data Rate at the IP Level versus Packetization Interval
(two retransmissions, 70 ms per event, 50 ms between events)
In the third column of the table, the packet size is 448 bits when
only one event is being reported and 520 bits when the previous event
is also included. No more than one level of redundancy is needed up
to a packetization interval of 50 ms, although at that point most
packets are reporting two events. Longer intervals require a second
level of redundancy in at least some packets.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Specification of Event Codes for DTMF Events</span>
This document defines one class of named events: DTMF tones.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. DTMF Applications</span>
DTMF signalling [<a href="#ref-10" title=""Technical features of push-button telephone sets"">10</a>] is typically generated by a telephone set or
possibly by a PBX (Private branch telephone exchange). DTMF digits
may be consumed by entities such as gateways or application servers
in the IP network, or by entities such as telephone switches or IVRs
in the circuit switched network.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
The DTMF events support two possible applications at the sending end:
1. The Internet telephony gateway detects DTMF on the incoming
circuits and sends the RTP payload described here instead of
regular audio packets. The gateway likely has the necessary
digital signal processors and algorithms, as it often needs to
detect DTMF, e.g., for two-stage dialing. Having the gateway
detect tones relieves the receiving Internet end system from
having to do this work and also avoids having low bit-rate codecs
like G.723.1 [<a href="#ref-20" title=""Speech coders : Dual rate speech coder for multimedia communications transmitting at 5.3 and 6.3 kbit/s"">20</a>] render DTMF tones unintelligible.
2. An Internet end system such as an "Internet phone" can emulate
DTMF functionality without concerning itself with generating
precise tone pairs and without imposing the burden of tone
recognition on the receiver.
A similar distinction occurs at the receiving end.
1. In the gateway scenario, an Internet telephony gateway connecting
a packet voice network to the PSTN re-creates the DTMF tones or
other telephony events and injects them into the PSTN.
2. In the end system scenario, the DTMF events are consumed by the
receiving entity itself.
In the most common application, DTMF tones are sent in one direction
only, typically from the calling end. The consuming device is most
commonly an IVR. DTMF may alternate with voice from either end. In
most cases, the only constraint on tone duration is that it exceed a
minimum value. However, in some cases a long-duration tone (in
excess of 1-2 seconds) has special significance.
ITU-T Recommendation Q.24 [<a href="#ref-11" title=""Multifrequency push- button signal reception"">11</a>], Table A-1, indicates that the
legacy switching equipment in the countries surveyed expects a
minimum recognizable signal duration of 40 ms, a minimum pause
between signals of 40 ms, and a maximum signalling rate of 8 to 10
digits per second depending on the country. Human-generated DTMF
signals, of course, are generally longer with larger pauses
between them.
DTMF tones may also be used for text telephony. This application is
documented in ITU-T Recommendation V.18 [<a href="#ref-27" title=""Operational and interworking requirements for {DCEs operating in the text telephone mode"">27</a>] Annex B. In this case,
DTMF is sent alternately from either end (half-duplex mode), with a
minimum 300-ms turn-around time. The only constraints on tone
durations in this application are that they and the pauses between
them must exceed specified minimum values. It is RECOMMENDED that a
gateway at the sending end be capable of detecting DTMF signals as
specified by V.18 Annex B (tones and pauses >=40 ms), but should send
<span class="grey">Schulzrinne & Taylor Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
event durations corresponding to those of a V.18 DTMF sender (tones
>=70 ms, pauses >=50 ms). This may occasionally imply some degree of
buffering of outgoing events, but if the source terminal conforms to
V.18 Annex B, this should not get out of hand.
Since minor increases in tone duration are harmless for all
applications of DTMF, but unintended breaks in playout of a DTMF
digit can confuse the receiving endpoint by creating the appearance
of extra digits, receiving applications that are converting DTMF
events back to tones SHOULD use the second playout algorithm rather
than the first one in <a href="#section-2.5.2.2">Section 2.5.2.2</a>. This provides some robustness
against packet loss or congestion.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. DTMF Events</span>
Table 3 shows the DTMF-related event codes within the telephone-event
payload format. The DTMF digits 0-9 and * and # are commonly
supported. DTMF digits A through D are less frequently encountered,
typically in special applications such as military networks.
+-------+--------+------+---------+
| Event | Code | Type | Volume? |
+-------+--------+------+---------+
| 0--9 | 0--9 | tone | yes |
| * | 10 | tone | yes |
| # | 11 | tone | yes |
| A--D | 12--15 | tone | yes |
+-------+--------+------+---------+
Table 3: DTMF Named Events
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Congestion Considerations</span>
The key considerations for the delivery of DTMF events are
reliability and avoidance of unintended breaks within the playout of
a given tone. End-to-end round-trip delay is not a major
consideration except in the special case where DTMF tones are being
used for text telephony. Assuming that, as recommended in
<a href="#section-3.1">Section 3.1</a> above, the second playout algorithm of <a href="#section-2.5.2.2">Section 2.5.2.2</a> is
in use, a temporary increase in packetization interval to as much as
100 ms or double the normal interval, whichever is less, should be
harmless.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. RTP Payload Format for Telephony Tones</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Introduction</span>
As an alternative to describing tones and events by name, as
described in <a href="#section-2">Section 2</a>, it is sometimes preferable to describe them
by their waveform properties. In particular, recognition is faster
than for naming signals since it does not depend on recognizing
durations or pauses.
There is no single international standard for telephone tones such as
dial tone, ringing (ringback), busy, congestion ("fast-busy"),
special announcement tones, or some of the other special tones, such
as payphone recognition, call waiting or record tone. However, ITU-T
Recommendation E.180 [<a href="#ref-18" title=""Technical characteristics of tones for the telephone service"">18</a>] notes that across all countries, these
tones share a number of characteristics:
o Telephony tones consist of either a single tone, the addition of
two or three tones or the modulation of two tones. (Almost all
tones use two frequencies; only the Hungarian "special dial tone"
has three.) Tones that are mixed have the same amplitude and do
not decay.
o In-band tones for telephony events are in the range of 25 Hz
(ringing tone in Angola) to 2600 Hz (the tone used for line
signalling in SS No. 5 and R1). The in-band telephone frequency
range is limited to 3400 Hz. R2 defines a 3825 Hz out-of-band
tone for line signalling on analogue trunks. (The piano has a
range from 27.5 to 4186 Hz.)
o Modulation frequencies range between 15 (ANSam tone) to 480 Hz
(Jamaica). Non-integer frequencies are used only for frequencies
of 16 2/3 and 33 1/3 Hz.
o Tones that are not continuous have durations of less than four
seconds.
o ITU Recommendation E.180 [<a href="#ref-18" title=""Technical characteristics of tones for the telephone service"">18</a>] notes that different telephone
companies require a tone accuracy of between 0.5 and 1.5%. The
Recommendation suggests a frequency tolerance of 1%.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Examples of Common Telephone Tone Signals</span>
As an aid to the implementor, Table 4 summarizes some common tones.
The rows labeled "ITU ..." refer to ITU-T Recommendation E.180 [<a href="#ref-18" title=""Technical characteristics of tones for the telephone service"">18</a>].
In these rows, the on and off durations are suggested ranges within
which local standards would set specific values. The symbol "+" in
the table indicates addition of the tones, without modulation, while
"*" indicates amplitude modulation.
+-------------------------+-------------------+----------+----------+
| Tone Name | Frequency | On Time | Off Time |
| | | (s) | (s) |
+-------------------------+-------------------+----------+----------+
| CNG | 1100 | 0.5 | 3.0 |
| V.25 CT | 1300 | 0.5 | 2.0 |
| CED | 2100 | 3.3 | -- |
| ANS | 2100 | 3.3 | -- |
| ANSam | 2100*15 | 3.3 | -- |
| V.21 bit | 980 or 1180 or | 0.00333 | -- |
| | 1650 or 1850 | | |
| ------------- | ---------- | -------- | -------- |
| ITU dial tone | 425 | -- | -- |
| U.S. dial tone | 350+440 | -- | -- |
| ITU ringing tone | 425 | 0.67-1.5 | 3-5 |
| U.S. ringing tone | 440+480 | 2.0 | 4.0 |
| ITU busy tone | 425 | 0.1-0.6 | 0.1-0.7 |
| U.S. busy tone | 480+620 | 0.5 | 0.5 |
| ITU congestion tone | 425 | 0.1-0.6 | 0.1-0.7 |
| U.S. congestion tone | 480+620 | 0.25 | 0.25 |
+-------------------------+-------------------+----------+----------+
Table 4: Examples of Telephony Tones
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Use of RTP Header Fields</span>
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Timestamp</span>
The RTP timestamp reflects the measurement point for the current
packet. The event duration described in <a href="#section-4.3.3">Section 4.3.3</a> begins at that
time.
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Marker Bit</span>
The tone payload type uses the marker bit to distinguish the first
RTP packet reporting a given instance of a tone from succeeding
packets for that tone. The marker bit SHOULD be set to 1 for the
first packet, and to 0 for all succeeding packets relating to the
same tone.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h4"><a class="selflink" id="section-4.3.3" href="#section-4.3.3">4.3.3</a>. Payload Format</span>
Based on the characteristics described above, this document defines
an RTP payload format called "tone" that can represent tones
consisting of one or more frequencies. (The corresponding media type
is "audio/tone".) The default timestamp rate is 8000 Hz, but other
rates may be defined. Note that the timestamp rate does not affect
the interpretation of the frequency, just the durations.
In accordance with current practice, this payload format does not
have a static payload type number, but uses an RTP payload type
number established dynamically and out-of-band.
The payload format is shown in Figure 2.
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| modulation |T| volume | duration |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|R R R R| frequency |R R R R| frequency |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|R R R R| frequency |R R R R| frequency |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
......
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|R R R R| frequency |R R R R| frequency |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 2: Payload Format for Tones
The payload contains the following fields:
modulation:
The modulation frequency, in Hz. The field is a 9-bit unsigned
integer, allowing modulation frequencies up to 511 Hz. If there
is no modulation, this field has a value of zero. Note that the
amplitude of modulation is not indicated in the payload and must
be determined by out-of-band means.
T:
If the T bit is set (one), the modulation frequency is to be
divided by three. Otherwise, the modulation frequency is taken as
is.
This bit allows frequencies accurate to 1/3 Hz, since modulation
frequencies such as 16 2/3 Hz are in practical use.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
volume:
The power level of the tone, expressed in dBm0 after dropping the
sign, with range from 0 to -63 dBm0. (Note: A preferred level
range for digital tone generators is -8 dBm0 to -3 dBm0.)
duration:
The duration of the tone, measured in timestamp units and
presented in network byte order. The tone begins at the instant
identified by the RTP timestamp and lasts for the duration value.
The value of zero is not permitted, and tones with such a duration
SHOULD be ignored.
The definition of duration corresponds to that for sample-based
codecs, where the timestamp represents the sampling point for the
first sample.
frequency:
The frequencies of the tones to be added, measured in Hz and
represented as a 12-bit unsigned integer. The field size is
sufficient to represent frequencies up to 4095 Hz, which exceeds
the range of telephone systems. A value of zero indicates
silence. A single tone can contain any number of frequencies. If
no frequencies are specified, the packet reports a period of
silence.
R:
This field is reserved for future use. The sender MUST set it to
zero, and the receiver MUST ignore it.
<span class="h4"><a class="selflink" id="section-4.3.4" href="#section-4.3.4">4.3.4</a>. Optional Media Type Parameters</span>
The "rate" parameter describes the sampling rate, in Hertz. The
number is written as an integer. If omitted, the default value is
8000 Hz.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Procedures</span>
This section defines the procedures associated with the tone payload
type.
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a>. Sending Procedures</span>
The sender MAY send an initial tones packet as soon as a tone is
recognized, or MAY wait until a pre-negotiated packetization period
has elapsed. The first RTP packet for a tone SHOULD have the marker
bit set to 1.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
In the case of longer-duration tones, the sender SHOULD generate
multiple RTP packets for the same tone instance. The RTP timestamp
MUST be updated for each packet generated (in contrast, for instance,
to the timestamp for packets carrying telephone events). Subsequent
packets for the same tone SHOULD have the marker bit set to 0, and
the RTP timestamp in each subsequent packet MUST equal the sum of the
timestamp and the duration in the preceding packet.
A final RTP packet MAY be generated as soon as the end of the tone is
detected, without waiting for the latest packetization period to
elapse.
The telephone-event payload described in <a href="#section-2">Section 2</a> is inherently
redundant, in that later packets for the same event carry all of the
earlier history of the event except for variations in volume. In
contrast, each packet for the tone payload type stands alone; a lost
packet means a gap in the information available at the receiving end.
Thus, for increased reliability, the sender SHOULD combine new and
old tone reports in the same RTP packet using <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>] audio
redundancy.
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a>. Receiving Procedures</span>
Receiving implementations play out the tones as received, typically
with a playout delay to allow for lost packets. When playing out
successive tone reports for the same tone (marker bit is zero, the
RTP timestamp is contiguous with that of the previous RTP packet, and
payload content is identical), the receiving implementation SHOULD
continue the tone without change or a break.
<span class="h4"><a class="selflink" id="section-4.4.3" href="#section-4.4.3">4.4.3</a>. Handling of Congestion</span>
If the sender determines that packets are being lost due to
congestion (e.g., through RTCP receiver reports), it SHOULD increase
the packetization interval for initial and interim tone reports so as
to reduce traffic volume to the receiver. The degree to which this
is possible without causing damaging consequences at the receiving
end depends both upon the playout delay used at that end and upon the
specific application associated with the tones. Both the maximum
packetization interval and maximum increase in packetization interval
at any one time are therefore a matter of configuration or out-of-
band negotiation.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Examples</span>
Consider a DTMF dialling sequence, where the user dials the digits
"911" and a sending gateway detects them. The first digit is 200 ms
long (1600 timestamp units) and starts at time 0; the second digit
lasts 250 ms (2000 timestamp units) and starts at time 880 ms (7040
timestamp units); the third digit is pressed at time 1.4 s (11,200
timestamp units) and lasts 220 ms (1760 timestamp units). The frame
duration is 50 ms.
Table 5 shows the complete sequence of events assuming that only the
telephone-event payload type is being reported. For simplicity: the
timestamp is assumed to begin at 0, the RTP sequence number at 1, and
volume settings are omitted.
+-------+-----------+------+--------+------+--------+--------+------+
| Time | Event | M | Time- | Seq | Event | Dura- | E |
| (ms) | | bit | stamp | No | Code | tion | bit |
+-------+-----------+------+--------+------+--------+--------+------+
| 0 | "9" | | | | | | |
| | starts | | | | | | |
| 50 | RTP | "1" | 0 | 1 | 9 | 400 | "0" |
| | packet 1 | | | | | | |
| | sent | | | | | | |
| 100 | RTP | "0" | 0 | 2 | 9 | 800 | "0" |
| | packet 2 | | | | | | |
| | sent | | | | | | |
| 150 | RTP | "0" | 0 | 3 | 9 | 1200 | "0" |
| | packet 3 | | | | | | |
| | sent | | | | | | |
| 200 | RTP | "0" | 0 | 4 | 9 | 1600 | "0" |
| | packet 4 | | | | | | |
| | sent | | | | | | |
| 200 | "9" ends | | | | | | |
| 250 | RTP | "0" | 0 | 5 | 9 | 1600 | "1" |
| | packet 4 | | | | | | |
| | first | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
| 300 | RTP | "0" | 0 | 6 | 9 | 1600 | "1" |
| | packet 4 | | | | | | |
| | second | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
| 880 | First "1" | | | | | | |
| | starts | | | | | | |
<span class="grey">Schulzrinne & Taylor Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
| 930 | RTP | "1" | 7040 | 7 | 1 | 400 | "0" |
| | packet 5 | | | | | | |
| | sent | | | | | | |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 1130 | RTP | "0" | 7040 | 11 | 1 | 2000 | "0" |
| | packet 9 | | | | | | |
| | sent | | | | | | |
| 1130 | First "1" | | | | | | |
| | ends | | | | | | |
| 1180 | RTP | "0" | 7040 | 12 | 1 | 2000 | "1" |
| | packet 9 | | | | | | |
| | first | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
| 1230 | RTP | "0" | 7040 | 13 | 1 | 2000 | "1" |
| | packet 9 | | | | | | |
| | second | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
| 1400 | Second | | | | | | |
| | "1" | | | | | | |
| | starts | | | | | | |
| 1450 | RTP | "1" | 11200 | 14 | 1 | 400 | "0" |
| | packet 10 | | | | | | |
| | sent | | | | | | |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 1620 | Second | | | | | | |
| | "1" ends | | | | | | |
| 1650 | RTP | "0" | 11200 | 18 | 1 | 1760 | "1" |
| | packet 14 | | | | | | |
| | sent | | | | | | |
| 1700 | RTP | "0" | 11200 | 19 | 1 | 1760 | "1" |
| | packet 14 | | | | | | |
| | first | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
| 1750 | RTP | "0" | 11200 | 20 | 1 | 1760 | "1" |
| | packet 14 | | | | | | |
| | second | | | | | | |
| | retrans- | | | | | | |
| | mission | | | | | | |
+-------+-----------+------+--------+------+--------+--------+------+
Table 5: Example of Event Reporting
<span class="grey">Schulzrinne & Taylor Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Table 6 shows the same sequence assuming that only the tone payload
type is being reported. This looks somewhat different. For
simplicity: the timestamp is assumed to begin at 0, the sequence
number at 1. Volume, the T bit, and the modulation frequency are
omitted. The latter two are always 0.
+-------+-----------+-----+--------+------+--------+-------+--------+
| Time | Event | M | Time- | Seq | Dura- | Freq 1| Freq 2 |
| (ms) | | bit | stamp | No | tion | (Hz) | (Hz) |
+-------+-----------+-----+--------+------+--------+-------+--------+
| 0 | "9" | | | | | | |
| | starts | | | | | | |
| 50 | RTP | "1" | 0 | 1 | 400 | 852 | 1477 |
| | packet 1 | | | | | | |
| | sent | | | | | | |
| 100 | RTP | "0" | 400 | 2 | 400 | 852 | 1477 |
| | packet 2 | | | | | | |
| | sent | | | | | | |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 200 | RTP | "0" | 1200 | 4 | 400 | 852 | 1477 |
| | packet 4 | | | | | | |
| | sent | | | | | | |
| 200 | "9" ends | | | | | | |
| 880 | First "1" | | | | | | |
| | starts | | | | | | |
| 930 | RTP | "1" | 7040 | 5 | 400 | 697 | 1209 |
| | packet 5 | | | | | | |
| | sent | | | | | | |
| 980 | RTP | "0" | 7440 | 6 | 400 | 697 | 1209 |
| | packet 6 | | | | | | |
| | sent | | | | | | |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 1130 | First "1" | | | | | | |
| | ends | | | | | | |
| 1400 | Second | | | | | | |
| | "1" | | | | | | |
| | starts | | | | | | |
| 1450 | RTP | "1" | 11200 | 10 | 400 | 697 | 1209 |
| | packet 10 | | | | | | |
| | sent | | | | | | |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 1620 | Second | | | | | | |
| | "1" ends | | | | | | |
| 1650 | RTP | "0" | 12800 | 14 | 160 | 697 | 1209 |
| | packet 14 | | | | | | |
| | sent | | | | | | |
+-------+-----------+-----+--------+------+--------+-------+--------+
Table 6: Example of Tone Reporting
<span class="grey">Schulzrinne & Taylor Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Now consider a combined payload, where the tone payload is the
primary payload type and the event payload is treated as a redundant
encoding (one level of redundancy). Because the primary payload is
tones, the tone payload rules determine the setting of the RTP header
fields. This means that the RTP timestamp always advances. As a
corollary, the timestamp offset for the events payload in the <a href="./rfc2198">RFC</a>
<a href="./rfc2198">2198</a> header increases by the same amount.
One issue that has to be considered in a combined payload is how to
handle retransmissions of final event reports. The tone payload
specification does not recommend retransmissions of final packets, so
it is unclear what to put in the primary payload fields of the
combined packet. In the interests of simplicity, it is suggested
that the retransmitted packets copy the fields relating to the
primary payload (including the RTP timestamp) from the original
packet. The same principle can be applied if the packet includes
multiple levels of event payload redundancy.
The figures below all illustrate "RTP packet 14" in the above tables.
Figure 3 shows an event-only payload, corresponding to Table 5.
Figure 4 shows a tone-only payload, corresponding to Table 6.
Finally, Figure 5 shows a combined payload, with tones primary and
events as a single redundant layer. Note that the combined payload
has the RTP sequence numbers shown in Table 5, because the
transmitted sequence includes the retransmitted packets.
Figure 3 assumes that the following SDP specification was used. This
session description provides for separate streams of G.729 [<a href="#ref-21" title=""Coding of speech at 8 kbit/s using conjugate-structure algebraic-code-excited linear- prediction (CS-ACELP)"">21</a>] audio
and events. Packets reported within the G.729 stream are not
considered here.
m=audio 12344 RTP/AVP 99
a=rtpmap:99 G729/8000
a=ptime:20
m=audio 12346 RTP/AVP 100
a=rtpmap:100 telephone-event/8000
a=fmtp:100 0-15
a=ptime:50
<span class="grey">Schulzrinne & Taylor Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|V=2|P|X| CC |M| PT | sequence number |
| 2 |0|0| 0 |0| 100 | 18 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| timestamp |
| 11200 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| synchronization source (SSRC) identifier |
| 0x5234a8 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| event |E R| volume | duration |
| 1 |1 0| 20 | 1760 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 3: Example RTP Packet for Event Payload
Figure 4 assumes that an SDP specification similar to that of the
previous case was used.
m=audio 12344 RTP/AVP 99
a=rtpmap:99 G729/8000
a=ptime:20
m=audio 12346 RTP/AVP 101
a=rtpmap:101 tone/8000
a=ptime:50
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|V=2|P|X| CC |M| PT | sequence number |
| 2 |0|0| 0 |0| 101 | 14 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| timestamp |
| 12800 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| synchronization source (SSRC) identifier |
| 0x5234a8 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| modulation |T| volume | duration |
| 0 |0| 20 | 160 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|R R R R| frequency |R R R R| frequency |
|0 0 0 0| 697 |0 0 0 0| 1209 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 4: Example RTP Packet for Tone Payload
<span class="grey">Schulzrinne & Taylor Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Figure 5, for the combined payload, assumes the following SDP session
description:
m=audio 12344 RTP/AVP 99
a=rtpmap:99 G729/8000
a=ptime:20
m=audio 12346 RTP/AVP 102 101 100
a=rtpmap:102 red/8000/1
a=fmtp:102 101/100
a=rtpmap:101 tone/8000
a=rtpmap:100 telephone-event/8000
a=fmtp:100 0-15
a=ptime:50
For ease of presentation, Figure 5 presents the actual payloads as if
they began on 32-bit boundaries. In the actual packet, they follow
immediately after the end of the <a href="./rfc2198">RFC 2198</a> header, and thus are
displaced one octet into successive words.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|V=2|P|X| CC |M| PT | sequence number |
| 2 |0|0| 0 |0| 102 | 18 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| timestamp |
| 12800 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| synchronization source (SSRC) identifier |
| 0x5234a8 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|F| block PT | timestamp offset | block length |
|1| 100 | 1600 | 4 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|F| block PT | event payload begins ... /
|0| 101 | \
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Event payload
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| event |E R| volume | duration |
| 1 |1 0| 20 | 1760 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Tone payload
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| modulation |T| volume | duration |
| 0 |0| 20 | 160 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|R R R R| frequency |R R R R| frequency |
|0 0 0 0| 697 |0 0 0 0| 1209 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 5: Example RTP Packet for Combined Tone and Event Payloads
<span class="grey">Schulzrinne & Taylor Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Security Considerations</span>
RTP packets using the payload formats defined in this specification
are subject to the security considerations discussed in the RTP
specification (<a href="./rfc3550">RFC 3550</a> [<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>]), and any appropriate RTP profile (for
example, <a href="./rfc3551">RFC 3551</a> [<a href="#ref-13" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">13</a>]). The <a href="./rfc3550">RFC 3550</a> discussion focuses on
requirements for confidentiality. Additional security considerations
relating to implementation are described in <a href="./rfc2198">RFC 2198</a> [<a href="#ref-2" title=""RTP Payload for Redundant Audio Data"">2</a>].
The telephone-event payload defined in this specification is highly
compressed. A change in value of just one bit can result in a major
change in meaning as decoded at the receiver. Thus, message
integrity MUST be provided for the telephone-event payload type.
To meet the need for protection both of confidentiality and
integrity, compliant implementations SHOULD implement the Secure
Real-time Transport Protocol (SRTP) [<a href="#ref-7" title=""The Secure Real-time Transport Protocol (SRTP)"">7</a>].
Note that the appropriate method of key distribution for SRTP may
vary with the specific application.
In some deployments, it may be preferable to use other means to
provide protection equivalent to that provided by SRTP.
Provided that gateway design includes robust, low-overhead tone
generation, this payload type does not exhibit any significant non-
uniformity in the receiver side computational complexity for packet
processing to cause a potential denial-of-service threat.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
This document updates the descriptions of two RTP payload formats,
'telephone-event' and 'tone', and associated Internet media types,
audio/telephone-event and audio/tone. It also documents the event
codes for DTMF tone events.
Within the audio/telephone-event type, events MUST be registered with
IANA. Registrations are subject to the policies "Specification
Required" and "Expert Review" as defined in <a href="./rfc2434">RFC 2434</a> [<a href="#ref-3" title="">3</a>]. The IETF-
appointed expert must ensure that:
a. the meaning and application of the proposed events are clearly
documented;
b. the events cannot be represented by existing event codes,
possibly with some minor modification of event definitions;
<span class="grey">Schulzrinne & Taylor Standards Track [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
c. the number of events is the minimum necessary to fulfill the
purpose of their application(s).
The expert is further responsible for providing guidance on the
allocation of event codes to the proposed events. Specifically, the
expert must indicate whether the event appears to be the same as one
defined in <a href="./rfc2833">RFC 2833</a> but not specified in any new document. In this
case, the event code specified in <a href="./rfc2833">RFC 2833</a> for that event SHOULD be
assigned to the proposed event. Otherwise, event codes MUST be
assigned from the set of available event codes listed below. If this
set is exhausted, the criterion for assignment from the reserved set
of event codes is to first assign those that appear to have the
lowest probability of being revived in their <a href="./rfc2833">RFC 2833</a> meaning in a
new specification.
The documentation for each event MUST indicate whether the event is a
state, tone, or other type of event (e.g., an out-of-band electrical
event such as on-hook or an indication that will not itself be played
out as tones at the receiving end). For tone events, the
documentation MUST indicate whether the volume field is applicable or
must be set to 0.
In view of the tradeoffs between the different reliability mechanisms
discussed in <a href="#section-2.6">Section 2.6</a>, documentation of specific events SHOULD
include a discussion of the appropriate design decisions for the
applications of those events.
Legal event codes range from 0 to 255. The initial registry content
is shown in Table 7, and consists of the sixteen events defined in
<a href="#section-3">Section 3</a> of this document. The remaining codes have the following
disposition:
o codes 17-22, 50-51, 90-95, 113-120, 169, and 206-255 are available
for assignment;
o codes 23-40, 49, and 52-63 are reserved for events defined in
[<a href="#ref-16" title=""Definition of Events for Modem, Fax, and Text Telephony Signals"">16</a>];
o codes 121-137 and 174-205 are reserved for events defined in [<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>];
o codes 16, 41-48, 64-88, 96-112, 138-168, and 170-173 are reserved
in the first instance for specifications reviving the
corresponding <a href="./rfc2833">RFC 2833</a> events, and in the second instance for
general assignment after all other codes have been assigned.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
+------------+--------------------------------+-----------+
| Event Code | Event Name | Reference |
+------------+--------------------------------+-----------+
| 0 | DTMF digit "0" | <a href="./rfc4733">RFC 4733</a> |
| 1 | DTMF digit "1" | <a href="./rfc4733">RFC 4733</a> |
| 2 | DTMF digit "2" | <a href="./rfc4733">RFC 4733</a> |
| 3 | DTMF digit "3" | <a href="./rfc4733">RFC 4733</a> |
| 4 | DTMF digit "4" | <a href="./rfc4733">RFC 4733</a> |
| 5 | DTMF digit "5" | <a href="./rfc4733">RFC 4733</a> |
| 6 | DTMF digit "6" | <a href="./rfc4733">RFC 4733</a> |
| 7 | DTMF digit "7" | <a href="./rfc4733">RFC 4733</a> |
| 8 | DTMF digit "8" | <a href="./rfc4733">RFC 4733</a> |
| 9 | DTMF digit "9" | <a href="./rfc4733">RFC 4733</a> |
| 10 | DTMF digit "*" | <a href="./rfc4733">RFC 4733</a> |
| 11 | DTMF digit "#" | <a href="./rfc4733">RFC 4733</a> |
| 12 | DTMF digit "A" | <a href="./rfc4733">RFC 4733</a> |
| 13 | DTMF digit "B" | <a href="./rfc4733">RFC 4733</a> |
| 14 | DTMF digit "C" | <a href="./rfc4733">RFC 4733</a> |
| 15 | DTMF digit "D" | <a href="./rfc4733">RFC 4733</a> |
+------------+--------------------------------+-----------+
Table 7: audio/telephone-event Event Code Registry
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. Media Type Registrations</span>
<span class="h4"><a class="selflink" id="section-7.1.1" href="#section-7.1.1">7.1.1</a>. Registration of Media Type audio/telephone-event</span>
This registration is done in accordance with [<a href="#ref-6" title=""MIME Type Registration of RTP Payload Formats"">6</a>] and [<a href="#ref-8" title=""Media Type Specifications and Registration Procedures"">8</a>].
Type name: audio
Subtype name: telephone-event
Required parameters: none.
Optional parameters:
The "events" parameter lists the events supported by the
implementation. Events are listed as one or more comma-separated
elements. Each element can be either a single integer providing
the value of an event code or an integer followed by a hyphen and
a larger integer, presenting a range of consecutive event code
values. The list does not have to be sorted. No white space is
allowed in the argument. The union of all of the individual event
codes and event code ranges designates the complete set of event
numbers supported by the implementation. If the "events"
parameter is omitted, support for events 0-15 (the DTMF tones) is
assumed.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
The "rate" parameter describes the sampling rate, in Hertz. The
number is written as an integer. If omitted, the default value is
8000 Hz.
Encoding considerations:
In the terminology defined by [<a href="#ref-8" title=""Media Type Specifications and Registration Procedures"">8</a>] <a href="#section-4.8">section 4.8</a>, this type is framed
and binary.
Security considerations:
See <a href="#section-6">Section 6</a>, "Security Considerations", in this document.
Interoperability considerations: none.
Published specification: this document.
Applications which use this media:
The telephone-event audio subtype supports the transport of events
occurring in telephone systems over the Internet.
Additional information:
Magic number(s): N/A.
File extension(s): N/A.
Macintosh file type code(s): N/A.
Person & email address to contact for further information:
Tom Taylor, taylor@nortel.com.
IETF AVT Working Group.
Intended usage: COMMON.
Restrictions on usage:
This type is defined only for transfer via RTP [<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>].
Author: IETF Audio/Video Transport Working Group.
Change controller:
IETF Audio/Video Transport Working Group as delegated from the
IESG.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h4"><a class="selflink" id="section-7.1.2" href="#section-7.1.2">7.1.2</a>. Registration of Media Type audio/tone</span>
This registration is done in accordance with [<a href="#ref-6" title=""MIME Type Registration of RTP Payload Formats"">6</a>] and [<a href="#ref-8" title=""Media Type Specifications and Registration Procedures"">8</a>].
Type name: audio
Subtype name: tone
Required parameters: none
Optional parameters:
The "rate" parameter describes the sampling rate, in Hertz. The
number is written as an integer. If omitted, the default value is
8000 Hz.
Encoding considerations:
In the terminology defined by [<a href="#ref-8" title=""Media Type Specifications and Registration Procedures"">8</a>] <a href="#section-4.8">section 4.8</a>, this type is framed
and binary.
Security considerations:
See <a href="#section-6">Section 6</a>, "Security Considerations", in this document.
Interoperability considerations: none
Published specification: this document.
Applications which use this media:
The tone audio subtype supports the transport of pure composite
tones, for example, those commonly used in the current telephone
system to signal call progress.
Additional information:
Magic number(s): N/A.
File extension(s): N/A.
Macintosh file type code(s): N/A.
Person & email address to contact for further information:
Tom Taylor, taylor@nortel.com.
IETF AVT Working Group.
Intended usage: COMMON.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Restrictions on usage:
This type is defined only for transfer via RTP [<a href="#ref-5" title=""RTP: A Transport Protocol for Real-Time Applications"">5</a>].
Author: IETF Audio/Video Transport Working Group.
Change controller:
IETF Audio/Video Transport Working Group as delegated from the
IESG.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Acknowledgements</span>
Scott Petrack was the original author of <a href="./rfc2833">RFC 2833</a>. Henning
Schulzrinne later loaned his expertise to complete the document, but
Scott must be credited with the energy behind the idea of a compact
encoding of tones over IP.
In <a href="./rfc2833">RFC 2833</a>, the suggestions of the Megaco working group were
acknowledged. Colin Perkins and Magnus Westerland, Chairs of the AVT
Working Group, provided helpful advice in the formation of the
present document. Over the years, detailed advice and comments for
<a href="./rfc2833">RFC 2833</a>, this document, or both were provided by Hisham Abdelhamid,
Flemming Andreasen, Fred Burg, Steve Casner, Dan Deliberato, Fatih
Erdin, Bill Foster, Mike Fox, Mehryar Garakani, Gunnar Hellstrom,
Rajesh Kumar, Terry Lyons, Steve Magnell, Zarko Markov, Tim
Melanchuk, Kai Miao, Satish Mundra, Kevin Noll, Vern Paxson, Oren
Peleg, Raghavendra Prabhu, Moshe Samoha, Todd Sherer, Adrian Soncodi,
Yaakov Stein, Mira Stevanovic, Alex Urquizo, and Herb Wildfeur.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-1">1</a>] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>, March 1997.
[<a id="ref-2">2</a>] Perkins, C., Kouvelas, I., Hodson, O., Hardman, V., Handley,
M., Bolot, J., Vega-Garcia, A., and S. Fosse-Parisis, "RTP
Payload for Redundant Audio Data", <a href="./rfc2198">RFC 2198</a>, September 1997.
[<a id="ref-3">3</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an IANA
Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc2434">RFC 2434</a>,
October 1998.
[<a id="ref-4">4</a>] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model with
Session Description Protocol (SDP)", <a href="./rfc3264">RFC 3264</a>, June 2002.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
[<a id="ref-5">5</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>, July 2003.
[<a id="ref-6">6</a>] Casner, S. and P. Hoschka, "MIME Type Registration of RTP
Payload Formats", <a href="./rfc3555">RFC 3555</a>, July 2003.
[<a id="ref-7">7</a>] Baugher, M., McGrew, D., Naslund, M., Carrara, E., and K.
Norrman, "The Secure Real-time Transport Protocol (SRTP)",
<a href="./rfc3711">RFC 3711</a>, March 2004.
[<a id="ref-8">8</a>] Freed, N. and J. Klensin, "Media Type Specifications and
Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>, <a href="./rfc4288">RFC 4288</a>, December 2005.
[<a id="ref-9">9</a>] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session
Description Protocol", <a href="./rfc4566">RFC 4566</a>, July 2006.
[<a id="ref-10">10</a>] International Telecommunication Union, "Technical features of
push-button telephone sets", ITU-T Recommendation Q.23,
November 1988.
[<a id="ref-11">11</a>] International Telecommunication Union, "Multifrequency push-
button signal reception", ITU-T Recommendation Q.24,
November 1988.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-12">12</a>] Schulzrinne, H. and S. Petrack, "RTP Payload for DTMF Digits,
Telephony Tones and Telephony Signals", <a href="./rfc2833">RFC 2833</a>, May 2000.
[<a id="ref-13">13</a>] Schulzrinne, H. and S. Casner, "RTP Profile for Audio and Video
Conferences with Minimal Control", STD 65, <a href="./rfc3551">RFC 3551</a>, July 2003.
[<a id="ref-14">14</a>] Kreuter, R., "RTP Payload Format for a 64 kbit/s Transparent
Call", <a href="./rfc4040">RFC 4040</a>, April 2005.
[<a id="ref-15">15</a>] Hellstrom, G. and P. Jones, "RTP Payload for Text
Conversation", <a href="./rfc4103">RFC 4103</a>, June 2005.
[<a id="ref-16">16</a>] Schulzrinne, H. and T. Taylor, "Definition of Events for Modem,
Fax, and Text Telephony Signals", <a href="./rfc4734">RFC 4734</a>, December 2006.
[<a id="ref-17">17</a>] Schulzrinne, H. and T. Taylor, "Definition of Events For
Channel-Oriented Telephony Signalling", Work In Progress ,
November 2005.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
[<a id="ref-18">18</a>] International Telecommunication Union, "Technical
characteristics of tones for the telephone service", ITU-T
Recommendation E.180/Q.35, March 1998.
[<a id="ref-19">19</a>] International Telecommunication Union, "Pulse code modulation
(PCM) of voice frequencies", ITU-T Recommendation G.711,
November 1988.
[<a id="ref-20">20</a>] International Telecommunication Union, "Speech coders : Dual
rate speech coder for multimedia communications transmitting at
5.3 and 6.3 kbit/s", ITU-T Recommendation G.723.1, March 1996.
[<a id="ref-21">21</a>] International Telecommunication Union, "Coding of speech at 8
kbit/s using conjugate-structure algebraic-code-excited linear-
prediction (CS-ACELP)", ITU-T Recommendation G.729, March 1996.
[<a id="ref-22">22</a>] International Telecommunication Union, "ISDN user-network
interface layer 3 specification for basic call control", ITU-T
Recommendation Q.931, May 1998.
[<a id="ref-23">23</a>] International Telecommunication Union, "Procedures for real-
time Group 3 facsimile communication over IP networks", ITU-T
Recommendation T.38, July 2003.
[<a id="ref-24">24</a>] International Telecommunication Union, "Procedures for starting
sessions of data transmission over the public switched
telephone network", ITU-T Recommendation V.8, November 2000.
[<a id="ref-25">25</a>] International Telecommunication Union, "Modem-over-IP networks:
Procedures for the end-to-end connection of V-series DCEs",
ITU-T Recommendation V.150.1, January 2003.
[<a id="ref-26">26</a>] International Telecommunication Union, "Procedures for
supporting Voice-Band Data over IP Networks", ITU-T
Recommendation V.152, January 2005.
[<a id="ref-27">27</a>] International Telecommunication Union, "Operational and
interworking requirements for {DCEs operating in the text
telephone mode", ITU-T Recommendation V.18, November 2000.
See also Recommendation V.18 Amendment 1, Nov. 2002.
[28] VOIP Troubleshooter LLC, "Indepth: Packet Loss Burstiness",
2005,
<<a href="http://www.voiptroubleshooter.com/indepth/burstloss.html">http://www.voiptroubleshooter.com/indepth/burstloss.html</a>>.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Summary of Changes from <a href="./rfc2833">RFC 2833</a></span>
The memo has been significantly restructured, incorporating a large
number of clarifications to the specification. With the exception of
those items noted below, the changes to the memo are intended to be
backwards-compatible clarifications. However, due to inconsistencies
and unclear definitions in <a href="./rfc2833">RFC 2833</a> [<a href="#ref-12" title=""RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals"">12</a>] it is likely that some
implementations interpreted that memo in ways that differ from this
version.
<a href="./rfc2833">RFC 2833</a> required that all implementations be capable of receiving
the DTMF events (event codes 0-15). <a href="#section-2.5.1.1">Section 2.5.1.1</a> of the present
document requires that a sender transmit only the events that the
receiver is capable of receiving. In the absence of a knowledge of
receiver capabilities, the sender SHOULD assume support of the DTMF
events but of no other events. The sender SHOULD indicate what
events it can send. <a href="#section-2.5.2.1">Section 2.5.2.1</a> requires that a receiver
signalling its capabilities using SDP MUST indicate which events it
can receive.
Non-zero values in the volume field of the payload were applicable
only to DTMF tones in <a href="./rfc2833">RFC 2833</a>, and for other events the receiver was
required to ignore them. The present memo requires that the
definition of each event indicate whether the volume field is
applicable to that event. The last paragraph of <a href="#section-2.5.2.2">Section 2.5.2.2</a>
indicates what a receiver may do if it receives volumes with zero
values for events to which the volume field is applicable. Along
with the <a href="./rfc2833">RFC 2833</a> receiver rule, this ensures backward compatibility
in both directions of transmission.
<a href="#section-2.5.1.3">Section 2.5.1.3</a> and <a href="#section-2.5.2.3">Section 2.5.2.3</a> introduce a new procedure for
reporting and playing out events whose duration exceeds the capacity
of the payload duration field. This procedure may cause momentary
confusion at an old (<a href="./rfc2833">RFC 2833</a>) receiver, because the timestamp is
updated without setting the E bit of the preceding event report and
without setting the M bit of the new one.
<a href="#section-2.5.1.5">Section 2.5.1.5</a> and <a href="#section-2.5.2.4">Section 2.5.2.4</a> introduce a new procedure whereby
a sequence of short-duration events may be packed into a single event
report. If an old (<a href="./rfc2833">RFC 2833</a>) receiver receives such a report, it may
discard the packet as invalid, since the packet holds more content
than the receiver was expecting. In any event, the additional events
in the packet will be lost.
<span class="grey">Schulzrinne & Taylor Standards Track [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
<a href="#section-2.3.5">Section 2.3.5</a> introduces the possibility of "state" events and
defines procedures for setting the duration field for reports of such
events. <a href="#section-2.5.1.2">Section 2.5.1.2</a> defines special exemptions from the setting
of the E bit for state events. Three more sections mention
procedures related to these events.
The Security Considerations section is updated to mention the
requirement for protection of integrity. More importantly, it makes
implementation of SRTP [<a href="#ref-7" title=""The Secure Real-time Transport Protocol (SRTP)"">7</a>] mandatory for compliant implementations,
without specifying a mandatory-to-implement method of key
distribution.
Finally, this document establishes an IANA registry for event codes
and establishes criteria for their documentation. This document
provides an initial population for the new registry, consisting
solely of the sixteen DTMF events. Two companion documents [<a href="#ref-16" title=""Definition of Events for Modem, Fax, and Text Telephony Signals"">16</a>] and
[<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>] describe events related to modems, fax, and text telephony and
to channel-associated telephony signalling, respectively. Some
changes were made to the latter because of errors and redundancies in
the <a href="./rfc2833">RFC 2833</a> assignments. The remaining events defined in <a href="./rfc2833">RFC 2833</a>
are deprecated because they do not appear to have been implemented,
but their codes have been conditionally reserved in case any of them
is needed in the future. Table 8 indicates the disposition of the
event codes in detail. Event codes not mentioned in this table were
not allocated by <a href="./rfc2833">RFC 2833</a> and continue to be unused.
+-------------+---------------------------------------+-------------+
| Event Codes | <a href="./rfc2833">RFC 2833</a> Description | Disposition |
+-------------+---------------------------------------+-------------+
| 0-15 | DTMF digits | <a href="./rfc4733">RFC 4733</a> |
| 16 | Line flash (deprecated) | Reserved |
| 23-31 | Unused | [<a href="#ref-16" title=""Definition of Events for Modem, Fax, and Text Telephony Signals"">16</a>] |
| 32-40 | Data and fax | [<a href="#ref-16" title=""Definition of Events for Modem, Fax, and Text Telephony Signals"">16</a>] |
| 41-48 | Data and fax (V.8bis, deprecated) | Reserved |
| 52-63 | Unused | [<a href="#ref-16" title=""Definition of Events for Modem, Fax, and Text Telephony Signals"">16</a>] |
| 64-89 | E.182 line events (deprecated) | Reserved |
| 96-112 | Country-specific line events | Reserved |
| | (deprecated) | |
| 121-127 | Unused | [<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>] |
| 128-137 | Trunks: MF 0-9 | [<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>] |
| 138-143 | Trunks: other MF (deprecated) | Reserved |
| 144-159 | Trunks: ABCD signalling | [<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>] |
| 160-168 | Trunks: various (deprecated) | Reserved |
| 170-173 | Trunks: various (deprecated) | Reserved |
| 174-205 | Unused | [<a href="#ref-17" title=""Definition of Events For Channel-Oriented Telephony Signalling"">17</a>] |
+-------------+---------------------------------------+-------------+
Table 8: Disposition of <a href="./rfc2833">RFC 2833</a>-defined Event Codes
<span class="grey">Schulzrinne & Taylor Standards Track [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Authors' Addresses
Henning Schulzrinne
Columbia U.
Dept. of Computer Science
Columbia University
1214 Amsterdam Avenue
New York, NY 10027
US
EMail: schulzrinne@cs.columbia.edu
Tom Taylor
Nortel
1852 Lorraine Ave
Ottawa, Ontario K1H 6Z8
Canada
EMail: taylor@nortel.com
<span class="grey">Schulzrinne & Taylor Standards Track [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc4733">RFC 4733</a> Telephony Events and Tones December 2006</span>
Full Copyright Statement
Copyright (C) The IETF Trust (2006).
This document is subject to the rights, licenses and restrictions
contained in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a>, and except as set forth therein, the authors
retain all their rights.
This document and the information contained herein are provided on an
"AS IS" basis and THE CONTRIBUTOR, THE ORGANIZATION HE/SHE REPRESENTS
OR IS SPONSORED BY (IF ANY), THE INTERNET SOCIETY, THE IETF TRUST,
AND THE INTERNET ENGINEERING TASK FORCE DISCLAIM ALL WARRANTIES,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT
THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY
IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR
PURPOSE.
Intellectual Property
The IETF takes no position regarding the validity or scope of any
Intellectual Property Rights or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; nor does it represent that it has
made any independent effort to identify any such rights. Information
on the procedures with respect to rights in RFC documents can be
found in <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and <a href="https://www.rfc-editor.org/bcp/bcp79">BCP 79</a>.
Copies of IPR disclosures made to the IETF Secretariat and any
assurances of licenses to be made available, or the result of an
attempt made to obtain a general license or permission for the use of
such proprietary rights by implementers or users of this
specification can be obtained from the IETF on-line IPR repository at
<a href="http://www.ietf.org/ipr">http://www.ietf.org/ipr</a>.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights that may cover technology that may be required to implement
this standard. Please address the information to the IETF at
ietf-ipr@ietf.org.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Schulzrinne & Taylor Standards Track [Page 49]
</pre>
|