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
|
<pre>Internet Engineering Task Force (IETF) V. Demjanenko
Request for Comments: 8130 D. Satterlee
Category: Standards Track VOCAL Technologies, Ltd.
ISSN: 2070-1721 March 2017
<span class="h1">RTP Payload Format</span>
<span class="h1">for the Mixed Excitation Linear Prediction Enhanced (MELPe) Codec</span>
Abstract
This document describes the RTP payload format for the Mixed
Excitation Linear Prediction Enhanced (MELPe) speech coder. MELPe's
three different speech encoding rates and sample frame sizes are
supported. Comfort noise procedures and packet loss concealment are
described in detail.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in <a href="./rfc7841#section-2">Section 2 of RFC 7841</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc8130">http://www.rfc-editor.org/info/rfc8130</a>.
Copyright Notice
Copyright (c) 2017 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
Table of Contents
<a href="#section-1">1</a>. Introduction ....................................................<a href="#page-2">2</a>
<a href="#section-1.1">1.1</a>. Conventions ................................................<a href="#page-2">2</a>
<a href="#section-2">2</a>. Background ......................................................<a href="#page-3">3</a>
<a href="#section-3">3</a>. Payload Format ..................................................<a href="#page-4">4</a>
<a href="#section-3.1">3.1</a>. MELPe Bitstream Definitions ................................<a href="#page-5">5</a>
<a href="#section-3.1.1">3.1.1</a>. 2400 bps Bitstream Structure ........................<a href="#page-6">6</a>
<a href="#section-3.1.2">3.1.2</a>. 1200 bps Bitstream Structure ........................<a href="#page-9">9</a>
<a href="#section-3.1.3">3.1.3</a>. 600 bps Bitstream Structure ........................<a href="#page-13">13</a>
<a href="#section-3.2">3.2</a>. MELPe Comfort Noise Bitstream Definition ..................<a href="#page-18">18</a>
<a href="#section-3.3">3.3</a>. Multiple MELPe Frames in an RTP Packet ....................<a href="#page-20">20</a>
<a href="#section-3.4">3.4</a>. Congestion Control Considerations .........................<a href="#page-21">21</a>
<a href="#section-4">4</a>. Payload Format Parameters ......................................<a href="#page-22">22</a>
<a href="#section-4.1">4.1</a>. Media Type Definitions ....................................<a href="#page-22">22</a>
<a href="#section-4.2">4.2</a>. Mapping to SDP ............................................<a href="#page-23">23</a>
<a href="#section-4.3">4.3</a>. Declarative SDP Considerations ............................<a href="#page-25">25</a>
<a href="#section-4.4">4.4</a>. Offer/Answer SDP Considerations ...........................<a href="#page-25">25</a>
<a href="#section-5">5</a>. Discontinuous Transmissions ....................................<a href="#page-26">26</a>
<a href="#section-6">6</a>. Packet Loss Concealment ........................................<a href="#page-26">26</a>
<a href="#section-7">7</a>. IANA Considerations ............................................<a href="#page-26">26</a>
<a href="#section-8">8</a>. Security Considerations ........................................<a href="#page-27">27</a>
<a href="#section-9">9</a>. References .....................................................<a href="#page-27">27</a>
<a href="#section-9.1">9.1</a>. Normative References ......................................<a href="#page-27">27</a>
<a href="#section-9.2">9.2</a>. Informative References ....................................<a href="#page-29">29</a>
Authors' Addresses ................................................<a href="#page-30">30</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
This document describes how compressed Mixed Excitation Linear
Prediction Enhanced (MELPe) speech as produced by the MELPe codec
may be formatted for use as an RTP payload. Details are provided to
packetize the three different codec bitrate data frames (2400, 1200,
and 600) into RTP packets. The sender may send one or more codec
data frames per packet, depending on the application scenario or
based on transport network conditions, bandwidth restrictions, delay
requirements, and packet loss tolerance.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Conventions</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
Best current practices for writing an RTP payload format
specification were followed [<a href="./rfc2736" title=""Guidelines for Writers of RTP Payload Format Specifications"">RFC2736</a>].
<span class="grey">Demjanenko & Satterlee Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Background</span>
The MELP speech coder was developed by the US military as an upgrade
from the LPC-based CELP standard vocoder for low-bitrate
communications [<a href="#ref-MELP" title=""Analog-to-Digital Conversion of Voice by 2,400 Bit/Second Mixed Excitation Linear Prediction (MELP)"">MELP</a>]. ("LPC" stands for "Linear-Predictive Coding",
and "CELP" stands for "Code-Excited Linear Prediction".) MELP was
further enhanced and subsequently adopted by NATO as MELPe for use by
its members and Partnership for Peace countries for military and
other governmental communications [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>]. The MELP speech coder
algorithm was developed by Atlanta Signal Processing (ASPI), Texas
Instruments (TI), SignalCom (now Microsoft), and Thales
Communications, with noise preprocessor contributions from AT&T,
under contract with NSA/DOD as international NATO Standard
STANAG 4591 [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>].
Commercial/civilian applications have arisen because of the
low-bitrate property of MELPe with its (relatively) high
intelligibility. As such, MELPe is being used in a variety of wired
and radio communications systems. Voice over IP (VoIP) / SIP systems
need to transport MELPe without decoding and re-encoding in order to
preserve its intelligibility. Hence, it is desirable and necessary
to define the proper payload formatting and use conventions of MELPe
in RTP payloads.
The MELPe codec [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>] supports three different vocoder bitrates:
2400, 1200, and 600 bps. The basic 2400 bps bitrate vocoder uses a
22.5 ms frame of speech consisting of 180 8000-Hz, 16-bit speech
samples. The 1200 and 600 bps bitrate vocoders each use three and
four 22.5 ms frames of speech, respectively. These reduced-bitrate
vocoders internally use multiple 2400 bps parameter sets with further
processing to strategically remove redundancy. The payload sizes for
each of the bitrates are 54, 81, and 54 bits for the 2400, 1200, and
600 bps frames, respectively. Dynamic bitrate switching is permitted
but only if supported by both endpoints.
The MELPe algorithm distinguishes between voiced and unvoiced speech
and encodes each differently. Unvoiced speech can be coded with
fewer information bits for the same quality. Forward error
correction (FEC) is applied to the 2400 bps codec unvoiced speech for
better protection of the subtle differences in signal reconstruction.
The lower-bitrate coders do not allocate any bits for FEC and rely on
strong error protection and correction in the communications channel.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
Comfort noise handling for MELPe follows the procedures in <a href="#appendix-B">Appendix B</a>
of SCIP-210 [<a href="#ref-SCIP210" title=""SCIP Signaling Plan"">SCIP210</a>]. After Voice Activity Detection (VAD)
no longer indicates the presence of speech/voice, a minimum of two
comfort noise vocoder frames (serving as a grace period) are to be
transmitted. The contents of the comfort noise frames are described
in the next section.
Packet loss concealment (PLC) exploits the FEC (and, more precisely,
any combination of two set bits in the pitch/voicing parameter) of
the 2400 bps speech coder. The pitch/voicing parameter has a sparse
set of permitted values. A value of zero indicates a non-voiced
frame. At least three bits are set for all valid pitch parameters.
The PLC erasure indication utilizes any errored/erasure encodings of
the pitch/voicing parameter with exactly two set bits, as described
below.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Payload Format</span>
The MELPe codec uses 22.5, 67.5, or 90 ms frames with a sampling rate
clock of 8 kHz, so the RTP timestamp MUST be in units of 1/8000 of a
second.
The RTP payload for MELPe has the format shown in Figure 1. No
additional header specific to this payload format is needed. This
format is intended for situations where the sender and the receiver
send one or more codec data frames per packet.
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| RTP Header |
+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
| |
+ one or more frames of MELPe |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 1: Packet Format Diagram
The RTP header of the packetized encoded MELPe speech has the
expected values as described in [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. The usage of the M bit
SHOULD be as specified in the applicable RTP profile -- for example,
[<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>], where [<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>] specifies that if the sender does not
suppress silence (i.e., sends a frame on every frame interval), the
M bit will always be zero. When more than one codec data frame is
present in a single RTP packet, the timestamp is, as always, that of
the oldest data frame represented in the RTP packet.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
The assignment of an RTP payload type for this new packet format is
outside the scope of this document and will not be specified here.
It is expected that the RTP profile for a particular class of
applications will assign a payload type for this encoding, or if that
is not done, then a payload type in the dynamic range shall be chosen
by the sender.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. MELPe Bitstream Definitions</span>
The total number of bits used to describe one frame of 2400 bps
speech is 54, which fits in 7 octets (with two unused bits). For
1200 bps speech, the total number of bits used is 81, which fits in
11 octets (with seven unused bits). For 600 bps speech, the total
number of bits used is 54, which fits in 7 octets (with two unused
bits). Unused bits, shown below as RSVA, RSVB, etc., are coded as
described in <a href="#section-3.3">Section 3.3</a> in support of dynamic bitrate switching.
In the MELPe bitstream definitions, the most significant bits are
considered priority bits. The intention was that these bits receive
greater protection in the underlying communications channel. For IP
networks, such additional protection is irrelevant. However, for the
convenience of interoperable gateway devices, the bitstreams will be
presented identically in IP networks.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. 2400 bps Bitstream Structure</span>
According to Table 3 of [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>], the 2400 bps MELPe bit transmission
order (for clarity, the bit priority is not shown) is as follows:
+--------+-------------+-------------+
| Bit | Voiced | Unvoiced |
+--------+-------------+-------------+
| B_01 | g20 | g20 |
| B_02 | BP0 | FEC10 |
| B_03 | P0 | P0 |
| B_04 | LSF20 | LSF20 |
| B_05 | LSF30 | LSF30 |
| B_06 | g23 | g23 |
| B_07 | g24 | g24 |
| B_08 | LSF35 | LSF35 |
+--------+-------------+-------------+
| B_09 | g21 | g21 |
| B_10 | g22 | g22 |
| B_11 | P4 | P4 |
| B_12 | LSF34 | LSF34 |
| B_13 | P5 | P5 |
| B_14 | P1 | P1 |
| B_15 | P2 | P2 |
| B_16 | LSF40 | LSF40 |
+--------+-------------+-------------+
| B_17 | P6 | P6 |
| B_18 | LSF10 | LSF10 |
| B_19 | LSF16 | LSF16 |
| B_20 | LSF45 | LSF45 |
| B_21 | P3 | P3 |
| B_22 | LSF15 | LSF15 |
| B_23 | LSF14 | LSF14 |
| B_24 | LSF25 | LSF25 |
+--------+-------------+-------------+
| B_25 | BP3 | FEC13 |
| B_26 | LSF13 | LSF13 |
| B_27 | LSF12 | LSF12 |
| B_28 | LSF24 | LSF24 |
| B_29 | LSF44 | LSF44 |
| B_30 | FM0 | FEC40 |
| B_31 | LSF11 | LSF11 |
| B_32 | LSF23 | LSF23 |
<span class="grey">Demjanenko & Satterlee Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+
| B_33 | FM7 | FEC22 |
| B_34 | FM6 | FEC21 |
| B_35 | FM5 | FEC20 |
| B_36 | g11 | g11 |
| B_37 | g10 | g10 |
| B_38 | BP2 | FEC12 |
| B_39 | BP1 | FEC11 |
| B_40 | LSF21 | LSF21 |
+--------+-------------+-------------+
| B_41 | LSF33 | LSF33 |
| B_42 | LSF22 | LSF22 |
| B_43 | LSF32 | LSF32 |
| B_44 | LSF31 | LSF31 |
| B_45 | LSF43 | LSF43 |
| B_46 | LSF42 | LSF42 |
| B_47 | AF | FEC42 |
| B_48 | LSF41 | LSF41 |
+--------+-------------+-------------+
| B_49 | FM4 | FEC32 |
| B_50 | FM3 | FEC31 |
| B_51 | FM2 | FEC30 |
| B_52 | FM1 | FEC41 |
| B_53 | g12 | g12 |
| B_54 | SYNC | SYNC |
+--------+-------------+-------------+
Notes:
g = Gain
BP = Bandpass Voicing
P = Pitch/Voicing
LSF = Line Spectral Frequencies
FEC = Forward Error Correction Parity Bits
FM = Fourier Magnitudes
AF = Aperiodic Flag
B_01 = least significant bit of data set
Table 1: Bitstream Definition for MELPe 2400 bps
<span class="grey">Demjanenko & Satterlee Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
The 2400 bps MELPe RTP payload is constructed as per Figure 2. Note
that bit B_01 is placed in the least significant bit (LSB) of the
first byte with all other bits in sequence. When filling octets, the
least significant bits of the seventh octet are filled with bits B_49
to B_54, respectively.
MSB LSB
0 1 2 3 4 5 6 7
+------+------+------+------+------+------+------+------+
| B_08 | B_07 | B_06 | B_05 | B_04 | B_03 | B_02 | B_01 |
+------+------+------+------+------+------+------+------+
| B_16 | B_15 | B_14 | B_13 | B_12 | B_11 | B_10 | B_09 |
+------+------+------+------+------+------+------+------+
| B_24 | B_23 | B_22 | B_21 | B_20 | B_19 | B_18 | B_17 |
+------+------+------+------+------+------+------+------+
| B_32 | B_31 | B_30 | B_29 | B_28 | B_27 | B_26 | B_25 |
+------+------+------+------+------+------+------+------+
| B_40 | B_39 | B_38 | B_37 | B_36 | B_35 | B_34 | B_33 |
+------+------+------+------+------+------+------+------+
| B_48 | B_47 | B_46 | B_45 | B_44 | B_43 | B_42 | B_41 |
+------+------+------+------+------+------+------+------+
| RSVA | RSVB | B_54 | B_53 | B_52 | B_51 | B_50 | B_49 |
+------+------+------+------+------+------+------+------+
Figure 2: Packed MELPe 2400 bps Payload Octets
<span class="grey">Demjanenko & Satterlee Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. 1200 bps Bitstream Structure</span>
According to Tables D-9a and D-9b of [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>], the 1200 bps MELPe bit
transmission order is as follows:
+--------+-------------+-------------+
| Bit | Modes 1-4 | Mode 5 |
| | (Voiced) | (Unvoiced) |
+--------+-------------+-------------+
| B_01 | Syn | Syn |
| B_02 | Pitch&UV0 | Pitch&UV0 |
| B_03 | Pitch&UV1 | Pitch&UV1 |
| B_04 | Pitch&UV2 | Pitch&UV2 |
| B_05 | Pitch&UV3 | Pitch&UV3 |
| B_06 | Pitch&UV4 | Pitch&UV4 |
| B_07 | Pitch&UV5 | Pitch&UV5 |
| B_08 | Pitch&UV6 | Pitch&UV6 |
+--------+-------------+-------------+
| B_09 | Pitch&UV7 | Pitch&UV7 |
| B_10 | Pitch&UV8 | Pitch&UV8 |
| B_11 | Pitch&UV9 | Pitch&UV9 |
| B_12 | Pitch&UV10 | Pitch&UV10 |
| B_13 | Pitch&UV11 | Pitch&UV11 |
| B_14 | LSP0 | LSP0 |
| B_15 | LSP1 | LSP1 |
| B_16 | LSP2 | LSP2 |
+--------+-------------+-------------+
| B_17 | LSP3 | LSP3 |
| B_18 | LSP4 | LSP4 |
| B_19 | LSP5 | LSP5 |
| B_20 | LSP6 | LSP6 |
| B_21 | LSP7 | LSP7 |
| B_22 | LSP8 | LSP8 |
| B_23 | LSP9 | LSP9 |
| B_24 | LSP10 | LSP10 |
+--------+-------------+-------------+
| B_25 | LSP11 | LSP11 |
| B_26 | LSP12 | LSP12 |
| B_27 | LSP13 | LSP13 |
| B_28 | LSP14 | LSP14 |
| B_29 | LSP15 | LSP15 |
| B_30 | LSP16 | LSP16 |
| B_31 | LSP17 | LSP17 |
| B_32 | LSP18 | LSP18 |
<span class="grey">Demjanenko & Satterlee Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+
| B_33 | LSP19 | LSP19 |
| B_34 | LSP20 | LSP20 |
| B_35 | LSP21 | LSP21 |
| B_36 | LSP22 | LSP22 |
| B_37 | LSP23 | LSP23 |
| B_38 | LSP24 | LSP24 |
| B_39 | LSP25 | LSP25 |
| B_40 | LSP26 | LSP26 |
+--------+-------------+-------------+
| B_41 | LSP27 | GAIN0 |
| B_42 | LSP28 | GAIN1 |
| B_43 | LSP29 | GAIN2 |
| B_44 | LSP30 | GAIN3 |
| B_45 | LSP31 | GAIN4 |
| B_46 | LSP32 | GAIN5 |
| B_47 | LSP33 | GAIN6 |
| B_48 | LSP34 | GAIN7 |
+--------+-------------+-------------+
| B_49 | LSP35 | GAIN8 |
| B_50 | LSP36 | GAIN9 |
| B_51 | LSP37 | |
| B_52 | LSP38 | |
| B_53 | LSP39 | |
| B_54 | LSP40 | |
| B_55 | LSP41 | |
| B_56 | LSP42 | |
+--------+-------------+-------------+
| B_57 | GAIN0 | |
| B_58 | GAIN1 | |
| B_59 | GAIN2 | |
| B_60 | GAIN3 | |
| B_61 | GAIN4 | |
| B_62 | GAIN5 | |
| B_63 | GAIN6 | |
| B_64 | GAIN7 | |
+--------+-------------+-------------+
| B_65 | GAIN8 | |
| B_66 | GAIN9 | |
| B_67 | BP0 | |
| B_68 | BP1 | |
| B_69 | BP2 | |
| B_70 | BP3 | |
| B_71 | BP4 | |
| B_72 | BP5 | |
<span class="grey">Demjanenko & Satterlee Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+
| B_73 | JITTER | |
| B_74 | FS0 | |
| B_75 | FS1 | |
| B_76 | FS2 | |
| B_77 | FS3 | |
| B_78 | FS4 | |
| B_79 | FS5 | |
| B_80 | FS6 | |
+--------+-------------+-------------+
| B_81 | FS7 | |
+--------+-------------+-------------+
Notes:
BP = Bandpass voicing
FS = Fourier magnitudes
LSP = Line Spectral Pair
Pitch&UV = Pitch/voicing
GAIN = Gain
JITTER = Jitter
Table 2: Bitstream Definition for MELPe 1200 bps
The 1200 bps MELPe RTP payload is constructed as per Figure 3. Note
that bit B_01 is placed in the LSB of the first byte with all other
bits in sequence. When filling octets, the least significant bit of
the eleventh octet is filled with bit B_81.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
MSB LSB
0 1 2 3 4 5 6 7
+------+------+------+------+------+------+------+------+
| B_08 | B_07 | B_06 | B_05 | B_04 | B_03 | B_02 | B_01 |
+------+------+------+------+------+------+------+------+
| B_16 | B_15 | B_14 | B_13 | B_12 | B_11 | B_10 | B_09 |
+------+------+------+------+------+------+------+------+
| B_24 | B_23 | B_22 | B_21 | B_20 | B_19 | B_18 | B_17 |
+------+------+------+------+------+------+------+------+
| B_32 | B_31 | B_30 | B_29 | B_28 | B_27 | B_26 | B_25 |
+------+------+------+------+------+------+------+------+
| B_40 | B_39 | B_38 | B_37 | B_36 | B_35 | B_34 | B_33 |
+------+------+------+------+------+------+------+------+
| B_48 | B_47 | B_46 | B_45 | B_44 | B_43 | B_42 | B_41 |
+------+------+------+------+------+------+------+------+
| B_56 | B_55 | B_54 | B_53 | B_52 | B_51 | B_50 | B_49 |
+------+------+------+------+------+------+------+------+
| B_64 | B_63 | B_62 | B_61 | B_60 | B_59 | B_58 | B_57 |
+------+------+------+------+------+------+------+------+
| B_72 | B_71 | B_70 | B_69 | B_68 | B_67 | B_66 | B_65 |
+------+------+------+------+------+------+------+------+
| B_80 | B_79 | B_78 | B_77 | B_76 | B_75 | B_74 | B_73 |
+------+------+------+------+------+------+------+------+
| RSVA | RSVB | RSVC | RSV0 | RSV0 | RSV0 | RSV0 | B_81 |
+------+------+------+------+------+------+------+------+
Figure 3: Packed MELPe 1200 bps Payload Octets
<span class="grey">Demjanenko & Satterlee Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. 600 bps Bitstream Structure</span>
According to Tables M-11 to M-16 of [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>], the 600 bps MELPe bit
transmission order (for clarity, the bit priority is not shown) is as
follows:
+--------+-------------+-------------+-------------+
| Bit | Mode 1 | Mode 2 | Mode 3 |
| | (Voiced) | (voiced) | (voiced) |
+--------+-------------+-------------+-------------+
| B_01 | Voicing (4) | Voicing (4) | Voicing (4) |
| B_02 | Voicing (3) | Voicing (3) | Voicing (3) |
| B_03 | Voicing (2) | Voicing (2) | Voicing (2) |
| B_04 | Voicing (1) | Voicing (1) | Voicing (1) |
| B_05 | Voicing (0) | Voicing (0) | Voicing (0) |
| B_06 | LSF1,4 (3) | Pitch (5) | Pitch (7) |
| B_07 | LSF1,4 (2) | Pitch (4) | Pitch (6) |
| B_08 | LSF1,4 (1) | Pitch (3) | Pitch (5) |
+--------+-------------+-------------+-------------+
| B_09 | LSF1,4 (0) | Pitch (2) | Pitch (4) |
| B_10 | LSF1,3 (3) | Pitch (1) | Pitch (3) |
| B_11 | LSF1,3 (2) | Pitch (0) | Pitch (2) |
| B_12 | LSF1,3 (1) | LSF1,3 (3) | Pitch (1) |
| B_13 | LSF1,3 (0) | LSF1,3 (2) | Pitch (0) |
| B_14 | LSF1,2 (3) | LSF1,3 (1) | LSF1,3 (3) |
| B_15 | LSF1,2 (2) | LSF1,3 (0) | LSF1,3 (2) |
| B_16 | LSF1,2 (1) | LSF1,2 (3) | LSF1,3 (1) |
+--------+-------------+-------------+-------------+
| B_17 | LSF1,2 (0) | LSF1,2 (2) | LSF1,3 (0) |
| B_18 | LSF1,1 (5) | LSF1,2 (1) | LSF1,2 (4) |
| B_19 | LSF1,1 (4) | LSF1,2 (0) | LSF1,2 (3) |
| B_20 | LSF1,1 (3) | LSF1,1 (5) | LSF1,2 (2) |
| B_21 | LSF1,1 (2) | LSF1,1 (4) | LSF1,2 (1) |
| B_22 | LSF1,1 (1) | LSF1,1 (3) | LSF1,2 (0) |
| B_23 | LSF1,1 (0) | LSF1,1 (2) | LSF1,1 (5) |
| B_24 | LSF2,4 (3) | LSF1,1 (1) | LSF1,1 (4) |
+--------+-------------+-------------+-------------+
| B_25 | LSF2,4 (2) | LSF1,1 (0) | LSF1,1 (3) |
| B_26 | LSF2,4 (1) | LSF2,3 (3) | LSF1,1 (2) |
| B_27 | LSF2,4 (0) | LSF2,3 (2) | LSF1,1 (1) |
| B_28 | LSF2,3 (3) | LSF2,3 (1) | LSF1,1 (0) |
| B_29 | LSF2,3 (2) | LSF2,3 (0) | LSF2,3 (3) |
| B_30 | LSF2,3 (1) | LSF2,2 (4) | LSF2,3 (2) |
| B_31 | LSF2,3 (0) | LSF2,2 (3) | LSF2,3 (1) |
| B_32 | LSF2,2 (3) | LSF2,2 (2) | LSF2,3 (0) |
<span class="grey">Demjanenko & Satterlee Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+-------------+
| B_33 | LSF2,2 (2) | LSF2,2 (1) | LSF2,2 (4) |
| B_34 | LSF2,2 (1) | LSF2,2 (0) | LSF2,2 (3) |
| B_35 | LSF2,2 (0) | LSF2,1 (6) | LSF2,2 (2) |
| B_36 | LSF2,1 (5) | LSF2,1 (5) | LSF2,2 (1) |
| B_37 | LSF2,1 (4) | LSF2,1 (4) | LSF2,2 (0) |
| B_38 | LSF2,1 (3) | LSF2,1 (3) | LSF2,1 (5) |
| B_39 | LSF2,1 (2) | LSF2,1 (2) | LSF2,1 (4) |
| B_40 | LSF2,1 (1) | LSF2,1 (1) | LSF2,1 (3) |
+--------+-------------+-------------+-------------+
| B_41 | LSF2,1 (0) | LSF2,1 (0) | LSF2,1 (2) |
| B_42 | GAIN2 (5) | GAIN2 (5) | LSF2,1 (1) |
| B_43 | GAIN2 (4) | GAIN2 (4) | LSF2,1 (0) |
| B_44 | GAIN2 (3) | GAIN2 (3) | GAIN2 (4) |
| B_45 | GAIN2 (2) | GAIN2 (2) | GAIN2 (3) |
| B_46 | GAIN2 (1) | GAIN2 (1) | GAIN2 (2) |
| B_47 | GAIN2 (0) | GAIN2 (0) | GAIN2 (1) |
| B_48 | GAIN1 (6) | GAIN1 (6) | GAIN2 (0) |
+--------+-------------+-------------+-------------+
| B_49 | GAIN1 (5) | GAIN1 (5) | GAIN1 (5) |
| B_50 | GAIN1 (4) | GAIN1 (4) | GAIN1 (4) |
| B_51 | GAIN1 (3) | GAIN1 (3) | GAIN1 (3) |
| B_52 | GAIN1 (2) | GAIN1 (2) | GAIN1 (2) |
| B_53 | GAIN1 (1) | GAIN1 (1) | GAIN1 (1) |
| B_54 | GAIN1 (0) | GAIN1 (0) | GAIN1 (0) |
+--------+-------------+-------------+-------------+
Table 3: Bitstream Definition for MELPe 600 bps (Part 1 of 2)
<span class="grey">Demjanenko & Satterlee Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+-------------+
| Bit | Mode 4 | Mode 5 | Mode 6 |
| | (voiced) | (voiced) | (voiced) |
+--------+-------------+-------------+-------------+
| B_01 | Voicing (4) | Voicing (4) | Voicing (4) |
| B_02 | Voicing (3) | Voicing (3) | Voicing (3) |
| B_03 | Voicing (2) | Voicing (2) | Voicing (2) |
| B_04 | Voicing (1) | Voicing (1) | Voicing (1) |
| B_05 | Voicing (0) | Voicing (0) | Voicing (0) |
| B_06 | Pitch (7) | Pitch (7) | Pitch (7) |
| B_07 | Pitch (6) | Pitch (6) | Pitch (6) |
| B_08 | Pitch (5) | Pitch (5) | Pitch (5) |
+--------+-------------+-------------+-------------+
| B_09 | Pitch (4) | Pitch (4) | Pitch (4) |
| B_10 | Pitch (3) | Pitch (3) | Pitch (3) |
| B_11 | Pitch (2) | Pitch (2) | Pitch (2) |
| B_12 | Pitch (1) | Pitch (1) | Pitch (1) |
| B_13 | Pitch (0) | Pitch (0) | Pitch (0) |
| B_14 | LSF1,3 (3) | LSF1,3 (3) | LSF1,3 (3) |
| B_15 | LSF1,3 (2) | LSF1,3 (2) | LSF1,3 (2) |
| B_16 | LSF1,3 (1) | LSF1,3 (1) | LSF1,3 (1) |
+--------+-------------+-------------+-------------+
| B_17 | LSF1,3 (0) | LSF1,3 (0) | LSF1,3 (0) |
| B_18 | LSF1,2 (3) | LSF1,2 (4) | LSF1,2 (4) |
| B_19 | LSF1,2 (2) | LSF1,2 (3) | LSF1,2 (3) |
| B_20 | LSF1,2 (1) | LSF1,2 (2) | LSF1,2 (2) |
| B_21 | LSF1,2 (0) | LSF1,2 (1) | LSF1,2 (1) |
| B_22 | LSF1,1 (5) | LSF1,2 (0) | LSF1,2 (0) |
| B_23 | LSF1,1 (4) | LSF1,1 (5) | LSF1,1 (6) |
| B_24 | LSF1,1 (3) | LSF1,1 (4) | LSF1,1 (5) |
+--------+-------------+-------------+-------------+
| B_25 | LSF1,1 (2) | LSF1,1 (3) | LSF1,1 (4) |
| B_26 | LSF1,1 (1) | LSF1,1 (2) | LSF1,1 (3) |
| B_27 | LSF1,1 (0) | LSF1,1 (1) | LSF1,1 (2) |
| B_28 | LSF2,3 (3) | LSF1,1 (0) | LSF1,1 (1) |
| B_29 | LSF2,3 (2) | LSF2,3 (3) | LSF1,1 (0) |
| B_30 | LSF2,3 (1) | LSF2,3 (2) | LSF2,3 (3) |
| B_31 | LSF2,3 (0) | LSF2,3 (1) | LSF2,3 (2) |
| B_32 | LSF2,2 (4) | LSF2,3 (0) | LSF2,3 (1) |
+--------+-------------+-------------+-------------+
| B_33 | LSF2,2 (3) | LSF2,2 (4) | LSF2,3 (0) |
| B_34 | LSF2,2 (2) | LSF2,2 (3) | LSF2,2 (4) |
| B_35 | LSF2,2 (1) | LSF2,2 (2) | LSF2,2 (3) |
| B_36 | LSF2,2 (0) | LSF2,2 (1) | LSF2,2 (2) |
| B_37 | LSF2,1 (6) | LSF2,2 (0) | LSF2,2 (1) |
| B_38 | LSF2,1 (5) | LSF2,1 (5) | LSF2,2 (0) |
| B_39 | LSF2,1 (4) | LSF2,1 (4) | LSF2,1 (6) |
| B_40 | LSF2,1 (3) | LSF2,1 (3) | LSF2,1 (5) |
<span class="grey">Demjanenko & Satterlee Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
+--------+-------------+-------------+-------------+
| B_41 | LSF2,1 (2) | LSF2,1 (2) | LSF2,1 (4) |
| B_42 | LSF2,1 (1) | LSF2,1 (1) | LSF2,1 (3) |
| B_43 | LSF2,1 (0) | LSF2,1 (0) | LSF2,1 (2) |
| B_44 | GAIN2 (4) | GAIN2 (4) | LSF2,1 (1) |
| B_45 | GAIN2 (3) | GAIN2 (3) | LSF2,1 (0) |
| B_46 | GAIN2 (2) | GAIN2 (2) | GAIN1 (8) |
| B_47 | GAIN2 (1) | GAIN2 (1) | GAIN1 (7) |
| B_48 | GAIN2 (0) | GAIN2 (0) | GAIN1 (6) |
+--------+-------------+-------------+-------------+
| B_49 | GAIN1 (5) | GAIN1 (5) | GAIN1 (5) |
| B_50 | GAIN1 (4) | GAIN1 (4) | GAIN1 (4) |
| B_51 | GAIN1 (3) | GAIN1 (3) | GAIN1 (3) |
| B_52 | GAIN1 (2) | GAIN1 (2) | GAIN1 (2) |
| B_53 | GAIN1 (1) | GAIN1 (1) | GAIN1 (1) |
| B_54 | GAIN1 (0) | GAIN1 (0) | GAIN1 (0) |
+--------+-------------+-------------+-------------+
Notes:
xxxx (0) = LSB
xxxx (nbits-1) = MSB
LSF1,p = MSVQ* index of the pth stage of the two first frames
LSF2,p = MSVQ index of the pth stage of the two last frames
GAIN1 = VQ/MSVQ index of the 1st stage
GAIN2 = MSVQ index of the 2nd stage
* MSVQ: Multi-Stage Vector Quantizer
Table 4: Bitstream Definition for MELPe 600 bps (Part 2 of 2)
The 600 bps MELPe RTP payload is constructed as per Figure 4. Note
that bit B_01 is placed in the LSB of the first byte with all other
bits in sequence. When filling octets, the least significant bits of
the seventh octet are filled with bits B_49 to B_54, respectively.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
MSB LSB
0 1 2 3 4 5 6 7
+------+------+------+------+------+------+------+------+
| B_08 | B_07 | B_06 | B_05 | B_04 | B_03 | B_02 | B_01 |
+------+------+------+------+------+------+------+------+
| B_16 | B_15 | B_14 | B_13 | B_12 | B_11 | B_10 | B_09 |
+------+------+------+------+------+------+------+------+
| B_24 | B_23 | B_22 | B_21 | B_20 | B_19 | B_18 | B_17 |
+------+------+------+------+------+------+------+------+
| B_32 | B_31 | B_30 | B_29 | B_28 | B_27 | B_26 | B_25 |
+------+------+------+------+------+------+------+------+
| B_40 | B_39 | B_38 | B_37 | B_36 | B_35 | B_34 | B_33 |
+------+------+------+------+------+------+------+------+
| B_48 | B_47 | B_46 | B_45 | B_44 | B_43 | B_42 | B_41 |
+------+------+------+------+------+------+------+------+
| RSVA | RSVB | B_54 | B_53 | B_52 | B_51 | B_50 | B_49 |
+------+------+------+------+------+------+------+------+
Figure 4: Packed MELPe 600 bps Payload Octets
<span class="grey">Demjanenko & Satterlee Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. MELPe Comfort Noise Bitstream Definition</span>
Table B.3-1 of [<a href="#ref-SCIP210" title=""SCIP Signaling Plan"">SCIP210</a>] identifies the usage of MELPe 2400 bps
parameters for conveying comfort noise.
+-------------------------------------+----------------+
| MELPe Parameter | Value |
+-------------------------------------+----------------+
| msvq[0] (line spectral frequencies) | * See Note |
+-------------------------------------+----------------+
| msvq[1] (line spectral frequencies) | Set to 0 |
+-------------------------------------+----------------+
| msvq[2] (line spectral frequencies) | Set to 0 |
+-------------------------------------+----------------+
| msvq[3] (line spectral frequencies) | Set to 0 |
+-------------------------------------+----------------+
| fsvq (Fourier magnitudes) | Set to 0 |
+-------------------------------------+----------------+
| gain[0] (gain) | Set to 0 |
+-------------------------------------+----------------+
| gain[1] (gain) | * See Note |
+-------------------------------------+----------------+
| pitch (pitch - overall voicing) | Set to 0 |
+-------------------------------------+----------------+
| bp (bandpass voicing) | Set to 0 |
+-------------------------------------+----------------+
| af (aperiodic flag/jitter index) | Set to 0 |
+-------------------------------------+----------------+
| sync (sync bit) | Alternations |
+-------------------------------------+----------------+
Note:
The default values are the respective parameters from the
vocoder frame. It is preferred that msvq[0] and gain[1]
values be derived by averaging the respective parameter from
some number of previous vocoder frames.
Table 5: MELPe Comfort Noise Parameters
<span class="grey">Demjanenko & Satterlee Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
Since only msvq[0] (also known as LSF1x or the first LSP) and gain[1]
(also known as g2x or the second gain) are needed, the following bit
order is used for comfort noise frames:
+--------+-------------+
| Bit | Comfort |
| | Noise |
+--------+-------------+
| B_01 | LSF10 |
| B_02 | LSF11 |
| B_03 | LSF12 |
| B_04 | LSF13 |
| B_05 | LSF14 |
| B_06 | LSF15 |
| B_07 | LSF16 |
| B_08 | g20 |
+--------+-------------+
| B_09 | g21 |
| B_10 | g22 |
| B_11 | g23 |
| B_12 | g24 |
| B_13 | SYNC |
+--------+-------------+
Notes:
g = Gain
LSF = Line Spectral Frequencies
Table 6: Bitstream Definition for MELPe Comfort Noise
The comfort noise MELPe RTP payload is constructed as per Figure 5.
Note that bit B_01 is placed in the LSB of the first byte with all
other bits in sequence. When filling octets, the least significant
bits of the second octet are filled with bits B_09 to B_13,
respectively.
MSB LSB
0 1 2 3 4 5 6 7
+------+------+------+------+------+------+------+------+
| B_08 | B_07 | B_06 | B_05 | B_04 | B_03 | B_02 | B_01 |
+------+------+------+------+------+------+------+------+
| RSVA | RSVB | RSVC | B_13 | B_12 | B_11 | B_10 | B_09 |
+------+------+------+------+------+------+------+------+
Figure 5: Packed MELPe Comfort Noise Payload Octets
<span class="grey">Demjanenko & Satterlee Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Multiple MELPe Frames in an RTP Packet</span>
A MELPe RTP packet MAY consist of zero or more MELPe coder frames
followed by zero or one MELPe comfort noise frame. The presence of a
comfort noise frame can be deduced from the length of the RTP
payload. The default packetization interval is one coder frame
(22.5, 67.5, or 90 ms) according to the coder bitrate (2400, 1200, or
600 bps). For some applications, a longer packetization interval is
used to reduce the packet rate.
A MELPe RTP packet comprised of no coder frame and no comfort noise
frame MAY be used periodically by an endpoint to indicate
connectivity by an otherwise idle receiver.
All MELPe frames in a single RTP packet MUST be of the same coder
bitrate. Dynamic switching between frame rates within an RTP stream
may be permitted (if supported by both ends) provided that reserved
bits RSVA, RSVB, and RSVC are filled in as per Table 7. If bitrate
switching is not used, all reserved bits are encoded as 0 by the
sender and ignored by the receiver. (RSV0 is always coded as 0.)
+-------------------+------+------+------+
| Coder Bitrate | RSVA | RSVB | RSVC |
+-------------------+------+------+------+
| 2400 bps | 0 | 0 | N/A |
+-------------------+------+------+------+
| 1200 bps | 1 | 0 | 0 |
+-------------------+------+------+------+
| 600 bps | 0 | 1 | N/A |
+-------------------+------+------+------+
| Comfort Noise | 1 | 0 | 1 |
+-------------------+------+------+------+
| (reserved) | 1 | 1 | N/A |
+-------------------+------+------+------+
Table 7: MELPe Frame Bitrate Indicators
It is important to observe that senders have the following additional
restrictions:
Senders SHOULD NOT include more MELPe frames in a single RTP packet
than will fit in the MTU of the RTP transport protocol.
Frames MUST NOT be split between RTP packets.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
It is RECOMMENDED that the number of frames contained within an RTP
packet be consistent with the application. For example, in telephony
and other real-time applications where delay is important, then the
fewer frames per packet the lower the delay, whereas for bandwidth-
constrained links or delay-insensitive streaming messaging
applications, more than one frame per packet or many frames per
packet would be acceptable.
Information describing the number of frames contained in an RTP
packet is not transmitted as part of the RTP payload. The way to
determine the number of MELPe frames is to count the total number of
octets within the RTP packet and divide the octet count by the number
of expected octets per frame (7/11/7 per frame). Keep in mind that
the last frame can be a 2-octet comfort noise frame.
When dynamic bitrate switching is used and more than one frame is
contained in an RTP packet, it is RECOMMENDED that the coder rate
bits contained in the last octet be inspected. If the coder bitrate
indicates a comfort noise frame, then inspect the third last octet
for the coder bitrate. All MELPe speech frames in the RTP packet
will be of this same coder bitrate.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Congestion Control Considerations</span>
The target bitrate of MELPe can be adjusted at any point in time,
thus allowing congestion management. Furthermore, the amount of
encoded speech or audio data encoded in a single packet can be used
for congestion control, since the packet rate is inversely
proportional to the packet duration. A lower packet transmission
rate reduces the amount of header overhead but at the same time
increases latency and loss sensitivity, so it ought to be used
with care.
Since UDP does not provide congestion control, applications that use
RTP over UDP SHOULD implement their own congestion control above the
UDP layer [<a href="./rfc8085" title=""UDP Usage Guidelines"">RFC8085</a>] and MAY also implement a transport circuit
breaker [<a href="./rfc8083" title=""Multimedia Congestion Control: Circuit Breakers for Unicast RTP Sessions"">RFC8083</a>]. Work in the RMCAT working group [<a href="#ref-RMCAT" title="RTP Media Congestion Avoidance Techniques (rmcat) Working Group">RMCAT</a>] describes
the interactions and conceptual interfaces necessary between the
application components that relate to congestion control, including
the RTP layer, the higher-level media codec control layer, and the
lower-level transport interface, as well as components dedicated to
congestion control functions.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Payload Format Parameters</span>
This RTP payload format is identified using the MELP, MELP2400,
MELP1200, and MELP600 media subtypes, which are registered in
accordance with <a href="./rfc4855">RFC 4855</a> [<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>] and per the media type
registration template from <a href="./rfc6838">RFC 6838</a> [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>].
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Media Type Definitions</span>
Type name: audio
Subtype names: MELP, MELP2400, MELP1200, and MELP600
Required parameters: N/A
Optional parameters:
ptime: the recommended length of time (in milliseconds)
represented by the media in a packet. It SHALL use the nearest
rounded-up ms integer packet duration. For MELPe, this
corresponds to the following values: 23, 45, 68, 90, 112, 135,
156, and 180. Larger values can be used as long as they are
properly rounded. See <a href="./rfc4566#section-6">Section 6 of RFC 4566</a> [<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>].
maxptime: the maximum length of time (in milliseconds) that can be
encapsulated in a packet. It SHALL use the nearest rounded-up
ms integer packet duration. For MELPe, this corresponds to the
following values: 23, 45, 68, 90, 112, 135, 156, and 180.
Larger values can be used as long as they are properly rounded.
See <a href="./rfc4566#section-6">Section 6 of RFC 4566</a> [<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>].
bitrate: specifies the MELPe coder bitrates supported. Possible
values are a comma-separated list of rates from the following
set: 2400, 1200, 600. The modes are listed in order of
preference; first is preferred. If "bitrate" is not present,
the fixed coder bitrate of 2400 MUST be used. The alternate
encoding names "MELP2400", "MELP1200", and "MELP600" directly
specify the MELPe coder bitrates of 2400, 1200, and 600,
respectively, and MUST NOT specify a "bitrate" parameter.
Encoding considerations: These media subtypes are framed and binary;
see <a href="./rfc6838#section-4.8">Section 4.8 of RFC 6838</a> [<a href="./rfc6838" title=""Media Type Specifications and Registration Procedures"">RFC6838</a>].
Security considerations: Please see <a href="./rfc8130#section-8">Section 8 of RFC 8130</a>.
Interoperability considerations: Early implementations used MELP2400,
MELP1200, and MELP600 to indicate both coder type and bitrate.
These media type names should be preserved with this registration.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
Published specification: N/A
Applications that use this media type: N/A
Additional information: N/A
Deprecated alias names for this type: N/A
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:
Victor Demjanenko, Ph.D.
VOCAL Technologies, Ltd.
520 Lee Entrance, Suite 202
Buffalo, NY 14228
United States of America
Phone: +1 716 688 4675
Email: victor.demjanenko@vocal.com
Intended usage: COMMON
Restrictions on usage: These media subtypes depend on RTP framing and
hence are only defined for transfer via RTP [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>]. Transport
within other framing protocols is not defined at this time.
Author: Victor Demjanenko
Change controller: IETF Payload working group delegated from the
IESG.
Provisional registration? (standards tree only): No
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Mapping to SDP</span>
The mapping of the above-defined payload format media subtypes and
their parameters SHALL be done according to <a href="./rfc4855#section-3">Section 3 of RFC 4855</a>
[<a href="./rfc4855" title=""Media Type Registration of RTP Payload Formats"">RFC4855</a>].
<span class="grey">Demjanenko & Satterlee Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
The information carried in the media type specification has a
specific mapping to fields in the Session Description Protocol (SDP)
[<a href="./rfc4566" title=""SDP: Session Description Protocol"">RFC4566</a>], which is commonly used to describe RTP sessions. When SDP
is used to specify sessions employing the MELPe codec, the mapping is
as follows:
o The media type ("audio") goes in SDP "m=" as the media name.
o The media subtype (payload format name) goes in SDP "a=rtpmap" as
the encoding name.
o The parameter "bitrate" goes in the SDP "a=fmtp" attribute by
copying it as a "bitrate=<value>" string.
o The parameters "ptime" and "maxptime" go in the SDP "a=ptime" and
"a=maxptime" attributes, respectively.
When conveying information via SDP, the encoding name SHALL be "MELP"
(the same as the media subtype). Alternate encoding name subtypes
"MELP2400", "MELP1200", and "MELP600" MAY be used in SDP to convey
fixed-bitrate configurations. These names have been observed in
systems that do not support dynamic frame-rate switching as specified
by the parameter "bitrate".
An example of the media representation in SDP for describing MELPe
might be:
m=audio 49120 RTP/AVP 97
a=rtpmap:97 MELP/8000
An alternative example of SDP for fixed-bitrate configurations
might be:
m=audio 49120 RTP/AVP 97 100 101 102
a=rtpmap:97 MELP/8000
a=rtpmap:100 MELP2400/8000
a=rtpmap:101 MELP1200/8000
a=rtpmap:102 MELP600/8000
If the encoding name "MELP" is received without a "bitrate"
parameter, the fixed coder bitrate of 2400 MUST be used. The
alternate encoding names "MELP2400", "MELP1200", and "MELP600"
directly specify the MELPe coder bitrates of 2400, 1200, and 600,
respectively, and MUST NOT specify a "bitrate" parameter.
The optional media type parameter "bitrate", when present, MUST be
included in the "a=fmtp" attribute in the SDP, expressed as a media
type string in the form of a semicolon-separated list of
<span class="grey">Demjanenko & Satterlee Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
parameter=value pairs. The string "value" can be one or more of
2400, 1200, and 600, separated by commas (where each bitrate value
indicates the corresponding MELPe coder). An example of the media
representation in SDP for describing MELPe when all three coder
bitrates are supported might be:
m=audio 49120 RTP/AVP 97
a=rtpmap:97 MELP/8000
a=fmtp:97 bitrate=2400,600,1200
Parameter "ptime" cannot be used for the purpose of specifying the
MELPe operating mode, due to the fact that for certain values it will
be impossible to distinguish which mode is about to be used (e.g.,
when ptime=68, it would be impossible to distinguish if the packet is
carrying one frame of 67.5 ms or three frames of 22.5 ms).
Note that the payload format (encoding) names are commonly shown in
upper case. Media subtypes are commonly shown in lower case. These
names are case insensitive in both places. Similarly, parameter
names are case insensitive in both the media subtype name and the
default mapping to the SDP a=fmtp attribute.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Declarative SDP Considerations</span>
For declarative media, the "bitrate" parameter specifies the possible
bitrates used by the sender. Multiple MELPe rtpmap values (such as
97, 98, and 99, as used below) MAY be used to convey MELPe-coded
voice at different bitrates. The receiver can then select an
appropriate MELPe codec by using 97, 98, or 99.
m=audio 49120 RTP/AVP 97 98 99
a=rtpmap:97 MELP/8000
a=fmtp:97 bitrate=2400
a=rtpmap:98 MELP/8000
a=fmtp:98 bitrate=1200
a=rtpmap:99 MELP/8000
a=fmtp:99 bitrate=600
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Offer/Answer SDP Considerations</span>
In the Offer/Answer model [<a href="./rfc3264" title=""An Offer/Answer Model with Session Description Protocol (SDP)"">RFC3264</a>], "bitrate" is a bidirectional
parameter. Both sides MUST use a common "bitrate" value or values.
The offer contains the bitrates supported by the offerer, listed in
its preferred order. The answerer MAY agree to any bitrate by
listing the bitrate first in the answerer response. Additionally,
the answerer MAY indicate any secondary bitrate or bitrates that it
supports. The initial bitrate used by both parties SHALL be the
first bitrate specified in the answerer response.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
For example, if offerer bitrates are "2400,600" and answer bitrates
are "600,2400", the initial bitrate is 600. If other bitrates are
provided by the answerer, any common bitrate between the offer and
answer MAY be used at any time in the future. Activation of these
other common bitrates is beyond the scope of this document.
The use of a lower bitrate is often important for a case such as when
one endpoint utilizes a bandwidth-constrained link (e.g., 1200 bps
radio link or slower), where only the lower coder bitrate will work.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Discontinuous Transmissions</span>
A primary application of MELPe is for radio communications of voice
conversations, and discontinuous transmissions are normal. When
MELPe is used in an IP network, MELPe RTP packet transmissions may
cease and resume frequently. RTP synchronization source (SSRC)
sequence number gaps indicate lost packets to be filled by PLC, while
abrupt loss of RTP packets indicates intended discontinuous
transmissions.
If a MELPe coder so desires, it may send a comfort noise frame as per
<a href="#appendix-B">Appendix B</a> of [<a href="#ref-SCIP210" title=""SCIP Signaling Plan"">SCIP210</a>] prior to ceasing transmission. A receiver
may optionally use comfort noise during its silence periods. No SDP
negotiations are required.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Packet Loss Concealment</span>
MELPe packet loss concealment (PLC) uses the special properties and
coding for the pitch/voicing parameter of the MELPe 2400 bps coder.
The PLC erasure indication utilizes any of the errored encodings of a
non-voiced frame as identified in Table 1 of [<a href="#ref-MELPE" title=""The 600 Bit/S, 1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band Voice Coder"">MELPE</a>]. For the sake
of simplicity, it is preferred that a code value of 3 for the
pitch/voicing parameter (represented by the bits P6 to P0 in Table 1
of this document) be used. Hence, set bits P0 and P1 to one and bits
P2, P3, P4, P5, and P6 to zero.
When using PLC in 1200 bps or 600 bps mode, the MELPe 2400 bps
decoder is called three or four times, respectively, to cover the
loss of a MELPe frame.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. IANA Considerations</span>
IANA has registered MELP, MELP2400, MELP1200, and MELP600 as
specified in <a href="#section-4.1">Section 4.1</a>. IANA has also added these media subtypes
to the "RTP Payload Format media types" registry
(<a href="http://www.iana.org/assignments/rtp-parameters">http://www.iana.org/assignments/rtp-parameters</a>).
<span class="grey">Demjanenko & Satterlee Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Security Considerations</span>
RTP packets using the payload format defined in this specification
are subject to the security considerations discussed in the RTP
specification [<a href="./rfc3550" title=""RTP: A Transport Protocol for Real-Time Applications"">RFC3550</a>] and in any applicable RTP profile such as
RTP/AVP [<a href="./rfc3551" title=""RTP Profile for Audio and Video Conferences with Minimal Control"">RFC3551</a>], RTP/AVPF [<a href="./rfc4585" title=""Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF)"">RFC4585</a>], RTP/SAVP [<a href="./rfc3711" title=""The Secure Real-time Transport Protocol (SRTP)"">RFC3711</a>], or
RTP/SAVPF [<a href="./rfc5124" title=""Extended Secure RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/SAVPF)"">RFC5124</a>]. However, as discussed in [<a href="./rfc7202" title=""Securing the RTP Framework: Why RTP Does Not Mandate a Single Media Security Solution"">RFC7202</a>], it is not
an RTP payload format's responsibility to discuss or mandate what
solutions are used to meet such basic security goals as
confidentiality, integrity, and source authenticity for RTP in
general. This responsibility lies with anyone using RTP in an
application. They can find guidance on available security mechanisms
and important considerations in [<a href="./rfc7201" title=""Options for Securing RTP Sessions"">RFC7201</a>]. Applications SHOULD use
one or more appropriate strong security mechanisms. The rest of this
section discusses the security-impacting properties of the payload
format itself.
This RTP payload format and the MELPe decoder do not exhibit any
significant non-uniformity in the receiver-side computational
complexity for packet processing and thus are unlikely to pose a
denial-of-service threat due to the receipt of pathological data.
Additionally, the RTP payload format does not contain any active
content.
Please see the security considerations discussed in [<a href="./rfc6562" title=""Guidelines for the Use of Variable Bit Rate Audio with Secure RTP"">RFC6562</a>]
regarding VAD and its effect on bitrates.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC2736">RFC2736</a>] Handley, M. and C. Perkins, "Guidelines for Writers of RTP
Payload Format Specifications", <a href="https://www.rfc-editor.org/bcp/bcp36">BCP 36</a>, <a href="./rfc2736">RFC 2736</a>,
DOI 10.17487/RFC2736, December 1999,
<<a href="http://www.rfc-editor.org/info/rfc2736">http://www.rfc-editor.org/info/rfc2736</a>>.
[<a id="ref-RFC3264">RFC3264</a>] Rosenberg, J. and H. Schulzrinne, "An Offer/Answer Model
with Session Description Protocol (SDP)", <a href="./rfc3264">RFC 3264</a>,
DOI 10.17487/RFC3264, June 2002,
<<a href="http://www.rfc-editor.org/info/rfc3264">http://www.rfc-editor.org/info/rfc3264</a>>.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
[<a id="ref-RFC3550">RFC3550</a>] Schulzrinne, H., Casner, S., Frederick, R., and V.
Jacobson, "RTP: A Transport Protocol for Real-Time
Applications", STD 64, <a href="./rfc3550">RFC 3550</a>, DOI 10.17487/RFC3550,
July 2003, <<a href="http://www.rfc-editor.org/info/rfc3550">http://www.rfc-editor.org/info/rfc3550</a>>.
[<a id="ref-RFC3551">RFC3551</a>] Schulzrinne, H. and S. Casner, "RTP Profile for Audio and
Video Conferences with Minimal Control", STD 65, <a href="./rfc3551">RFC 3551</a>,
DOI 10.17487/RFC3551, July 2003,
<<a href="http://www.rfc-editor.org/info/rfc3551">http://www.rfc-editor.org/info/rfc3551</a>>.
[<a id="ref-RFC3711">RFC3711</a>] Baugher, M., McGrew, D., Naslund, M., Carrara, E., and K.
Norrman, "The Secure Real-time Transport Protocol (SRTP)",
<a href="./rfc3711">RFC 3711</a>, DOI 10.17487/RFC3711, March 2004,
<<a href="http://www.rfc-editor.org/info/rfc3711">http://www.rfc-editor.org/info/rfc3711</a>>.
[<a id="ref-RFC4566">RFC4566</a>] Handley, M., Jacobson, V., and C. Perkins, "SDP: Session
Description Protocol", <a href="./rfc4566">RFC 4566</a>, DOI 10.17487/RFC4566,
July 2006, <<a href="http://www.rfc-editor.org/info/rfc4566">http://www.rfc-editor.org/info/rfc4566</a>>.
[<a id="ref-RFC4855">RFC4855</a>] Casner, S., "Media Type Registration of RTP Payload
Formats", <a href="./rfc4855">RFC 4855</a>, DOI 10.17487/RFC4855, February 2007,
<<a href="http://www.rfc-editor.org/info/rfc4855">http://www.rfc-editor.org/info/rfc4855</a>>.
[<a id="ref-RFC5124">RFC5124</a>] Ott, J. and E. Carrara, "Extended Secure RTP Profile for
Real-time Transport Control Protocol (RTCP)-Based Feedback
(RTP/SAVPF)", <a href="./rfc5124">RFC 5124</a>, DOI 10.17487/RFC5124,
February 2008, <<a href="http://www.rfc-editor.org/info/rfc5124">http://www.rfc-editor.org/info/rfc5124</a>>.
[<a id="ref-RFC6562">RFC6562</a>] Perkins, C. and JM. Valin, "Guidelines for the Use of
Variable Bit Rate Audio with Secure RTP", <a href="./rfc6562">RFC 6562</a>,
DOI 10.17487/RFC6562, March 2012,
<<a href="http://www.rfc-editor.org/info/rfc6562">http://www.rfc-editor.org/info/rfc6562</a>>.
[<a id="ref-RFC6838">RFC6838</a>] Freed, N., Klensin, J., and T. Hansen, "Media Type
Specifications and Registration Procedures", <a href="https://www.rfc-editor.org/bcp/bcp13">BCP 13</a>,
<a href="./rfc6838">RFC 6838</a>, DOI 10.17487/RFC6838, January 2013,
<<a href="http://www.rfc-editor.org/info/rfc6838">http://www.rfc-editor.org/info/rfc6838</a>>.
[<a id="ref-RFC8083">RFC8083</a>] Perkins, C. and V. Singh, "Multimedia Congestion Control:
Circuit Breakers for Unicast RTP Sessions", <a href="./rfc8083">RFC 8083</a>,
DOI 10.17487/RFC8083, March 2017,
<<a href="http://www.rfc-editor.org/info/rfc8083">http://www.rfc-editor.org/info/rfc8083</a>>.
[<a id="ref-RFC8085">RFC8085</a>] Eggert, L., Fairhurst, G., and G. Shepherd, "UDP Usage
Guidelines", <a href="./rfc8085">RFC 8085</a>, DOI 10.17487/RFC8085, March 2017,
<<a href="http://www.rfc-editor.org/info/rfc8085">http://www.rfc-editor.org/info/rfc8085</a>>.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
[<a id="ref-MELP">MELP</a>] Department of Defense Telecommunications Standard,
"Analog-to-Digital Conversion of Voice by 2,400 Bit/Second
Mixed Excitation Linear Prediction (MELP)", MIL-STD-3005,
December 1999.
[<a id="ref-MELPE">MELPE</a>] North Atlantic Treaty Organization (NATO), "The 600 Bit/S,
1200 Bit/S and 2400 Bit/S NATO Interoperable Narrow Band
Voice Coder", STANAG No. 4591, January 2006.
[<a id="ref-SCIP210">SCIP210</a>] National Security Agency, "SCIP Signaling Plan", SCIP-210,
December 2007.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-RFC4585">RFC4585</a>] Ott, J., Wenger, S., Sato, N., Burmeister, C., and J. Rey,
"Extended RTP Profile for Real-time Transport Control
Protocol (RTCP)-Based Feedback (RTP/AVPF)", <a href="./rfc4585">RFC 4585</a>,
DOI 10.17487/RFC4585, July 2006,
<<a href="http://www.rfc-editor.org/info/rfc4585">http://www.rfc-editor.org/info/rfc4585</a>>.
[<a id="ref-RFC7201">RFC7201</a>] Westerlund, M. and C. Perkins, "Options for Securing RTP
Sessions", <a href="./rfc7201">RFC 7201</a>, DOI 10.17487/RFC7201, April 2014,
<<a href="http://www.rfc-editor.org/info/rfc7201">http://www.rfc-editor.org/info/rfc7201</a>>.
[<a id="ref-RFC7202">RFC7202</a>] Perkins, C. and M. Westerlund, "Securing the RTP
Framework: Why RTP Does Not Mandate a Single Media
Security Solution", <a href="./rfc7202">RFC 7202</a>, DOI 10.17487/RFC7202,
April 2014, <<a href="http://www.rfc-editor.org/info/rfc7202">http://www.rfc-editor.org/info/rfc7202</a>>.
[<a id="ref-RMCAT">RMCAT</a>] IETF, RTP Media Congestion Avoidance Techniques (rmcat)
Working Group,
<<a href="https://datatracker.ietf.org/wg/rmcat/about/">https://datatracker.ietf.org/wg/rmcat/about/</a>>.
<span class="grey">Demjanenko & Satterlee Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc8130">RFC 8130</a> RTP Payload Format for MELPe Codec March 2017</span>
Authors' Addresses
Victor Demjanenko, Ph.D.
VOCAL Technologies, Ltd.
520 Lee Entrance, Suite 202
Buffalo, NY 14228
United States of America
Phone: +1 716 688 4675
Email: victor.demjanenko@vocal.com
David Satterlee
VOCAL Technologies, Ltd.
520 Lee Entrance, Suite 202
Buffalo, NY 14228
United States of America
Phone: +1 716 688 4675
Email: david.satterlee@vocal.com
Demjanenko & Satterlee Standards Track [Page 30]
</pre>
|