From c2eac81daaf330dc35ae8176a240f80ef2627481 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 19 Jul 2005 13:14:07 +0000 Subject: ext/dv/gstdvdec.h: Fix signedness error. Original commit message from CVS: 2005-07-19 Andy Wingo * ext/dv/gstdvdec.h: Fix signedness error. --- ChangeLog | 4 ++++ ext/dv/gstdvdec.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7e90df15..cb34cfb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-07-19 Andy Wingo + + * ext/dv/gstdvdec.h: Fix signedness error. + 2005-07-19 Wim Taymans * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert), diff --git a/ext/dv/gstdvdec.h b/ext/dv/gstdvdec.h index 2eb4c9b2..54dab4c3 100644 --- a/ext/dv/gstdvdec.h +++ b/ext/dv/gstdvdec.h @@ -76,8 +76,8 @@ struct _GstDVDec { gint64 start_byte; gint64 stop_byte; - GstClockTime start_timestamp; - GstClockTime stop_timestamp; + gint64 start_timestamp; + gint64 stop_timestamp; gboolean need_discont; gboolean new_media; -- cgit