aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2010-05-30 10:51:44 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2010-05-30 10:51:44 +0000
commit305277d1328e8e46a75ee0149713082ea7c4c9e2 (patch)
tree0bbda04430dd60a1faf16bfae8bcf955f8949848 /epan/dissectors/packet-rtcp.c
parent89d1ecd951cf69789e826fbfa7c62c025fa9ef79 (diff)
From Matteo Valdina
There are two typos in the RTCP TMMBR packets: 1. In the dissector of RTCP TMMBR is written "messured" instead of measured. 2. In the text title field is written TMMBN instead on TMMBR and vice-versa. svn path=/trunk/; revision=33022
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index e6a3be6de5..be1a0e5f6d 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -463,7 +463,7 @@ static int hf_rtcp_rtpfb_tmbbr_fci_ssrc = -1;
static int hf_rtcp_rtpfb_tmbbr_fci_exp = -1;
static int hf_rtcp_rtpfb_tmbbr_fci_mantissa = -1;
static int hf_rtcp_rtpfb_tmbbr_fci_bitrate = -1;
-static int hf_rtcp_rtpfb_tmbbr_fci_messuredoverhead = -1;
+static int hf_rtcp_rtpfb_tmbbr_fci_measuredoverhead = -1;
static int hf_srtcp_e = -1;
static int hf_srtcp_index = -1;
static int hf_srtcp_mki = -1;
@@ -754,7 +754,7 @@ dissect_rtcp_rtpfb_tmmbr( tvbuff_t *tvb, int offset, proto_tree *rtcp_tree, prot
proto_tree_add_string_format_value( fci_tree, hf_rtcp_rtpfb_tmbbr_fci_bitrate, tvb, offset, 3, "", "%u", bitrate);
offset += 3;
/* Overhead */
- proto_tree_add_item( fci_tree, hf_rtcp_rtpfb_tmbbr_fci_messuredoverhead, tvb, offset, 1, FALSE );
+ proto_tree_add_item( fci_tree, hf_rtcp_rtpfb_tmbbr_fci_measuredoverhead, tvb, offset, 1, FALSE );
offset += 1;
if (top_item != NULL) {
@@ -847,9 +847,9 @@ dissect_rtcp_rtpfb( tvbuff_t *tvb, int offset, proto_tree *rtcp_tree, proto_item
if (rtcp_rtpfb_fmt == 1) {
offset = dissect_rtcp_rtpfb_nack(tvb, offset, rtcp_tree, top_item);
} else if (rtcp_rtpfb_fmt == 3) {
- offset = dissect_rtcp_rtpfb_tmmbr(tvb, offset, rtcp_tree, top_item, counter, 1);
- } else if (rtcp_rtpfb_fmt == 4) {
offset = dissect_rtcp_rtpfb_tmmbr(tvb, offset, rtcp_tree, top_item, counter, 0);
+ } else if (rtcp_rtpfb_fmt == 4) {
+ offset = dissect_rtcp_rtpfb_tmmbr(tvb, offset, rtcp_tree, top_item, counter, 1);
} else {
/* Unknown FMT */
proto_tree_add_item(rtcp_tree, hf_rtcp_fci, tvb, offset, packet_length - offset, FALSE );
@@ -4535,10 +4535,10 @@ proto_register_rtcp(void)
}
},
{
- &hf_rtcp_rtpfb_tmbbr_fci_messuredoverhead,
+ &hf_rtcp_rtpfb_tmbbr_fci_measuredoverhead,
{
- "Messured Overhead",
- "rtcp.rtpfb.tmmbr.fci.messuredoverhead",
+ "Measured Overhead",
+ "rtcp.rtpfb.tmmbr.fci.measuredoverhead",
FT_UINT16,
BASE_DEC,
NULL,