diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ext/dv/gstdvdec.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2005-07-19 Andy Wingo <wingo@pobox.com> + + * ext/dv/gstdvdec.h: Fix signedness error. + 2005-07-19 Wim Taymans <wim@fluendo.com> * 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; |