ext/dv/gstdvdec.h: Fix signedness error.
authorAndy Wingo <wingo@pobox.com>
Tue, 19 Jul 2005 13:14:07 +0000 (13:14 +0000)
committerAndy Wingo <wingo@pobox.com>
Tue, 19 Jul 2005 13:14:07 +0000 (13:14 +0000)
Original commit message from CVS:
2005-07-19  Andy Wingo  <wingo@pobox.com>

* ext/dv/gstdvdec.h: Fix signedness error.

ChangeLog
ext/dv/gstdvdec.h

index 7e90df1..cb34cfb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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),
index 2eb4c9b..54dab4c 100644 (file)
@@ -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;