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.
This commit is contained in:
Andy Wingo 2005-07-19 13:14:07 +00:00
parent f4a4942329
commit c2eac81daa
2 changed files with 6 additions and 2 deletions

View file

@ -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> 2005-07-19 Wim Taymans <wim@fluendo.com>
* ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert), * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),

View file

@ -76,8 +76,8 @@ struct _GstDVDec {
gint64 start_byte; gint64 start_byte;
gint64 stop_byte; gint64 stop_byte;
GstClockTime start_timestamp; gint64 start_timestamp;
GstClockTime stop_timestamp; gint64 stop_timestamp;
gboolean need_discont; gboolean need_discont;
gboolean new_media; gboolean new_media;