aboutsummaryrefslogtreecommitdiffstats
path: root/tap-rtp-common.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-29 15:58:43 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-07-29 15:58:43 +0000
commitc7e1be2b1e1583bd399bfeb1f8c7aa218738e4b7 (patch)
tree4600bc8103b73ba62884c1d77f6d31076badf411 /tap-rtp-common.c
parent999f95845c36bb63c28de7d6e86b65fc575abe38 (diff)
Update mimetype_and_clock_map and ad samle rate to sdp.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25860 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-rtp-common.c')
-rw-r--r--tap-rtp-common.c25
1 files changed, 15 insertions, 10 deletions
diff --git a/tap-rtp-common.c b/tap-rtp-common.c
index 523518fc8c..2544ff47d7 100644
--- a/tap-rtp-common.c
+++ b/tap-rtp-common.c
@@ -373,17 +373,21 @@ typedef struct _mimetype_and_clock {
http://www.iana.org/assignments/rtp-parameters.
*/
static const mimetype_and_clock mimetype_and_clock_map[] = {
- {"AMR", 8000}, /* [RFC3267] */
- {"AMR-WB", 16000}, /* [RFC3267] */
+ {"AMR", 8000}, /* [RFC4867][RFC3267] */
+ {"AMR-WB", 16000}, /* [RFC4867][RFC3267] */
{"EVRC", 8000}, /* [RFC3558] */
- {"EVRC0", 8000}, /* [RFC3558] */
+ {"EVRC0", 8000}, /* [RFC4788] */
+ {"EVRC1", 8000}, /* [RFC4788] */
+ {"EVRCB", 8000}, /* [RFC4788] */
+ {"EVRCB0", 8000}, /* [RFC4788] */
+ {"EVRCB1", 8000}, /* [RFC4788] */
{"G7221", 16000}, /* [RFC3047] */
- {"G726-16", 8000}, /* [RFC3551] */
- {"G726-24", 8000}, /* [RFC3551] */
- {"G726-32", 8000}, /* [RFC3551] */
- {"G726-40", 8000}, /* [RFC3551] */
- {"G729D", 8000}, /* [RFC3551] */
- {"G729E", 8000}, /* [RFC3551] */
+ {"G726-16", 8000}, /* [RFC3551][RFC4856] */
+ {"G726-24", 8000}, /* [RFC3551][RFC4856] */
+ {"G726-32", 8000}, /* [RFC3551][RFC4856] */
+ {"G726-40", 8000}, /* [RFC3551][RFC4856] */
+ {"G729D", 8000}, /* [RFC3551][RFC4856] */
+ {"G729E", 8000}, /* [RFC3551][RFC4856] */
{"GSM-EFR", 8000}, /* [RFC3551] */
{"mpa-robust", 90000}, /* [RFC3119] */
{"SMV", 8000}, /* [RFC3558] */
@@ -400,7 +404,8 @@ static const mimetype_and_clock mimetype_and_clock_map[] = {
{"MP4V-ES", 90000}, /* [RFC3016] */
{"pointer", 90000}, /* [RFC2862] */
{"raw", 90000}, /* [RFC4175] */
- {"telephone-event", 8000}, /* [RFC4733] */
+ {"telephone-event", 8000}, /* [RFC4733] */
+ {"H264", 90000}, /* [RFC3984] */
};
#define NUM_DYN_CLOCK_VALUES (sizeof mimetype_and_clock_map / sizeof mimetype_and_clock_map[0])