ED137: Fix Climax Time Delay.

change Climax Time Delay absolute tree to uint8 instead of uint32 like relative.
Fix calculation of microseconds to nanoseconds.

Change-Id: I984856300204de0a5dab4ae7515a9cb1d73f68ef
Reviewed-on: https://code.wireshark.org/review/34017
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Petri-Dish: Anders Broman <a.broman58@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Roy Chateau 2019-07-19 18:11:53 +02:00 committed by Anders Broman
parent f259187803
commit cdee7494d5
1 changed files with 2 additions and 2 deletions

View File

@ -655,7 +655,7 @@ dissect_rtp_hdr_ext_ed137(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, v
#define NSTIME_INIT_USEC(nstime, usecs) \
nstime.secs = usecs / 1000000; \
nstime.nsecs = (usecs % 1000000) / 1000;
nstime.nsecs = (usecs % 1000000) * 1000;
/* Decodes and calculates relative/absolute time item */
static void process_time_value(tvbuff_t *tvb, proto_tree *tree, int time_item, unsigned int hdrext_offset, gboolean time_relative _U_, unsigned int time_value)
@ -1473,7 +1473,7 @@ proto_register_rtp_ed137(void)
{
"CLIMAX-Time Delay Absolute",
"rtp.ext.ed137a.ft.climax_delay.absolute_value",
FT_UINT32,
FT_UINT8,
BASE_DEC,
NULL,
0x7F,