diff options
author | Edgard Lima <edgard.lima@indt.org.br> | 2006-10-26 14:07:08 +0000 |
---|---|---|
committer | Edgard Lima <edgard.lima@indt.org.br> | 2006-10-26 14:07:08 +0000 |
commit | db8ec6cf87ca830a494dbb753f16a242ab1b5e5b (patch) | |
tree | a7e38db123ff0b977250794b085869078a770a02 /gst/nuvdemux/gstnuvdemux.h | |
parent | 0fbc246d234b70e14f94efe77226bbe976a2da1d (diff) | |
download | gst-plugins-bad-db8ec6cf87ca830a494dbb753f16a242ab1b5e5b.tar.gz gst-plugins-bad-db8ec6cf87ca830a494dbb753f16a242ab1b5e5b.tar.bz2 gst-plugins-bad-db8ec6cf87ca830a494dbb753f16a242ab1b5e5b.zip |
Fixed bug for files with timestamps less than 0.
Original commit message from CVS:
Fixed bug for files with timestamps less than 0.
Diffstat (limited to 'gst/nuvdemux/gstnuvdemux.h')
-rw-r--r-- | gst/nuvdemux/gstnuvdemux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/nuvdemux/gstnuvdemux.h b/gst/nuvdemux/gstnuvdemux.h index 56da9ef8..24fdd6d4 100644 --- a/gst/nuvdemux/gstnuvdemux.h +++ b/gst/nuvdemux/gstnuvdemux.h @@ -92,9 +92,9 @@ typedef struct 0x02: gauss 5 pixel (8,1,1,1,1)/12 0x04: cartoon filter */ - guint32 i_timecode; /* ms */ + gint i_timecode; /* ms */ - guint32 i_length; /* V,A,T: length of following data + gint i_length; /* V,A,T: length of following data S: length of packet correl */ } nuv_frame_header; |