summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/dv/gstdvdec.h4
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 <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;