rtc-sdp
Version:
rtc.io utility module for patching (munging) SDP
36 lines (32 loc) • 636 B
JavaScript
/* jshint node: true */
;
/**
# iana-codecs
The list of codecs as defined in http://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml#rtp-parameters-1
**/
module.exports = {
'PCMU/8000': 0,
'GSM/8000': 3,
'G723/8000': 4,
'DVI4/8000': 5,
'DVI4/16000': 6,
'LPC/8000': 7,
'PCMA/8000': 8,
'G722/8000': 9,
'L16/44100/2': 10,
'L16/44100': 11,
'QCELP/8000': 12,
'CN/8000': 13,
'MPA/90000': 14,
'G728/8000': 15,
'DVI4/11025': 16,
'DVI4/22050': 17,
'G729/8000': 18,
'CelB/90000': 25,
'JPEG/90000': 26,
'nv/90000': 28,
'H261/90000': 31,
'MPV/90000': 32,
'MP2T/90000': 33,
'H263/90000': 34
};