aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.h
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2007-01-02 11:46:30 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2007-01-02 11:46:30 +0000
commit7e2db474c8302b612db324bb12f889fd612647ac (patch)
tree21c44273bc7106c3306f62828dac778d3ff07c2c /epan/dissectors/packet-rtcp.h
parent0359ffb284b404de9d7ab3d860162273a8cfdffc (diff)
Fix for bug 1279 (Negative values for RTCP round trip delay
cannot be stored in guint32). - Makes the threshold preference value an absolute value. - There is now a separate expert info item for -ve roundtrips N.B. There is still a problem with filtering -ve values on this FT_INT32 field, i.e. rtcp.roundtrip-delay < 0 never matches with frames that it should (even if rtcp.roundtrip-delay == -3 can be used to match specific frames...). svn path=/trunk/; revision=20264
Diffstat (limited to 'epan/dissectors/packet-rtcp.h')
-rw-r--r--epan/dissectors/packet-rtcp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtcp.h b/epan/dissectors/packet-rtcp.h
index d5d9013d28..47a4ae7e7b 100644
--- a/epan/dissectors/packet-rtcp.h
+++ b/epan/dissectors/packet-rtcp.h
@@ -47,7 +47,7 @@ struct _rtcp_conversation_info
/* Stored result of calculation */
guchar lsr_matched;
guint32 calculated_delay_used_frame;
- guint32 calculated_delay;
+ gint32 calculated_delay;
};