aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap-int.h
diff options
context:
space:
mode:
authorRichard van der Hoff <richardv@mxtelecom.com>2007-08-21 22:00:06 +0000
committerRichard van der Hoff <richardv@mxtelecom.com>2007-08-21 22:00:06 +0000
commite6002deb3e16a050f664a325c5e2c056ca730c64 (patch)
treee629d7b408dd5176230787a9596c914ec649180b /wiretap/wtap-int.h
parent32d553796646f47bc5ae6fa778030a2b35d3b8ed (diff)
From Shaun Jackman <sjackman@gmail.com> / bug 1753:
* asn1/mpeg/packet-mpeg-pes-template.c: Improved decoding of PES extension header and Pack header. Decode SCR, PTS, and DTS. * asn1/mpeg/mpeg-pes.asn (Pack): Remove. * epan/dissectors/packet-mpeg-pes.c: Regenerate. * wiretap/mpeg.c (mpeg_read): Decode the SCR using integer arithmetic instead of double float arithmetic to prevent rounding error. * wiretap/wtap-int.h (mpeg_t) <t0>: Use time_t instead of double. svn path=/trunk/; revision=22577
Diffstat (limited to 'wiretap/wtap-int.h')
-rw-r--r--wiretap/wtap-int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wiretap/wtap-int.h b/wiretap/wtap-int.h
index 01ab9025c6..6da8fe4d96 100644
--- a/wiretap/wtap-int.h
+++ b/wiretap/wtap-int.h
@@ -151,7 +151,7 @@ typedef struct {
typedef struct {
struct wtap_nstime now;
- double t0;
+ time_t t0;
} mpeg_t;
typedef gboolean (*subtype_read_func)(struct wtap*, int*, char**, gint64*);