mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
ext/ogg/gstogmparse.c: don't pass random values to ogmparse convert function.
Original commit message from CVS: * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query): don't pass random values to ogmparse convert function. Make seeking possible in the exile1.ogm file.
This commit is contained in:
parent
d0cc0e9082
commit
34968138b9
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-12-08 Luca Ognibene <luogni@tin.it>
|
||||
|
||||
* ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
|
||||
don't pass random values to ogmparse convert function.
|
||||
Make seeking possible in the exile1.ogm file.
|
||||
|
||||
2005-12-07 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
|
||||
|
|
|
@ -512,7 +512,7 @@ gst_ogm_parse_sink_query (GstPad * pad, GstQuery * query)
|
|||
gint64 src_val, dest_val;
|
||||
|
||||
/* peel off input */
|
||||
gst_query_parse_convert (query, &src_fmt, &src_val, NULL, NULL);
|
||||
gst_query_parse_convert (query, &src_fmt, &src_val, &dest_fmt, &dest_val);
|
||||
if ((res = gst_ogm_parse_sink_convert (pad, src_fmt, src_val,
|
||||
&dest_fmt, &dest_val))) {
|
||||
gst_query_set_convert (query, src_fmt, src_val, dest_fmt, dest_val);
|
||||
|
|
Loading…
Reference in a new issue