mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
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:
parent
f4a4942329
commit
c2eac81daa
2 changed files with 6 additions and 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),
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue