summaryrefslogtreecommitdiffstats
path: root/ext/dv
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2005-07-19 13:14:07 +0000
committerAndy Wingo <wingo@pobox.com>2005-07-19 13:14:07 +0000
commitc2eac81daaf330dc35ae8176a240f80ef2627481 (patch)
tree5d37ab37cdd033cd5d9ec2496afc3ae815a76192 /ext/dv
parentf4a4942329a39476cb4022b708200084c27fce75 (diff)
ext/dv/gstdvdec.h: Fix signedness error.
Original commit message from CVS: 2005-07-19 Andy Wingo <wingo@pobox.com> * ext/dv/gstdvdec.h: Fix signedness error.
Diffstat (limited to 'ext/dv')
-rw-r--r--ext/dv/gstdvdec.h4
1 files changed, 2 insertions, 2 deletions
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;