aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2010-03-17 06:27:34 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2010-03-17 06:27:34 +0000
commit70168234a11c83663ee895a7902aa63abccf019d (patch)
tree998eea8e73ec7185cba9a6952799c300b2171ecb /epan/dissectors/packet-rtcp.c
parent04edfe3b2a077ba85844db2f27ecb5c6e288fb10 (diff)
Update according to IANA registery.
svn path=/trunk/; revision=32216
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c18
1 files changed, 16 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index bb00cbc5a1..0c4b3537ac 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -106,9 +106,13 @@ static const value_string rtcp_version_vals[] =
#define RTCP_RTPFB 205
#define RTCP_PSFB 206
#define RTCP_XR 207
+#define RTCP_AVB 208
+#define RTCP_RSI 209
/* Supplemental H.261 specific RTCP packet types according to Section C.3.5 */
#define RTCP_FIR 192
#define RTCP_NACK 193
+#define RTCP_SMPTETC 194
+#define RTCP_IJ 195
static const value_string rtcp_packet_type_vals[] =
{
@@ -117,11 +121,15 @@ static const value_string rtcp_packet_type_vals[] =
{ RTCP_SDES, "Source description" },
{ RTCP_BYE, "Goodbye" },
{ RTCP_APP, "Application specific" },
- { RTCP_FIR, "Full Intra-frame Request (H.261)" },
- { RTCP_NACK, "Negative Acknowledgement (H.261)" },
{ RTCP_RTPFB,"Generic RTP Feedback" },
{ RTCP_PSFB, "Payload-specific" },
{ RTCP_XR, "Extended report (RFC 3611)"},
+ { RTCP_AVB, "AVB RTCP packet (IEEE1733)" },
+ { RTCP_RSI, "Receiver Summary Information" },
+ { RTCP_FIR, "Full Intra-frame Request (H.261)" },
+ { RTCP_NACK, "Negative Acknowledgement (H.261)" },
+ { RTCP_SMPTETC, "SMPTE time-code mapping" },
+ { RTCP_IJ, "Extended inter-arrival jitter report" },
{ 0, NULL }
};
@@ -162,6 +170,9 @@ static const value_string rtcp_sdes_type_vals[] =
#define RTCP_XR_STATS_SUMRY 6
#define RTCP_XR_VOIP_METRCS 7
#define RTCP_XR_BT_XNQ 8
+#define RTCP_XR_TI_VOIP 9
+#define RTCP_XR_PR_LOSS_RLE 10
+#define RTCP_XR_MC_ACQ 11
static const value_string rtcp_xr_type_vals[] =
{
@@ -173,6 +184,9 @@ static const value_string rtcp_xr_type_vals[] =
{ RTCP_XR_STATS_SUMRY, "Statistics Summary Report Block" },
{ RTCP_XR_VOIP_METRCS, "VoIP Metrics Report Block" },
{ RTCP_XR_BT_XNQ, "BT XNQ RTCP XR (RFC5093) Report Block" },
+ { RTCP_XR_TI_VOIP, "Texas Instruments Extended VoIP Quality Block" },
+ { RTCP_XR_PR_LOSS_RLE, "Post-repair Loss RLE Report Block" },
+ { RTCP_XR_MC_ACQ, "Multicast Acquisition Report Block" },
{ 0, NULL}
};