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. --- ext/dv/gstdvdec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext') 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