diff options
Diffstat (limited to 'gst/cdxaparse/gstvcdparse.c')
-rw-r--r-- | gst/cdxaparse/gstvcdparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/cdxaparse/gstvcdparse.c b/gst/cdxaparse/gstvcdparse.c index 4bf148b82..77fe8e604 100644 --- a/gst/cdxaparse/gstvcdparse.c +++ b/gst/cdxaparse/gstvcdparse.c @@ -260,7 +260,7 @@ gst_vcd_parse_src_event (GstPad * pad, GstEvent * event) gdouble rate; gint64 start, stop; - gst_event_parse_seek (event, &rate, &format, &flags, &start_type, + gst_event_seek_parse (event, &rate, &format, &flags, &start_type, &start, &stop_type, &stop); if (format == GST_FORMAT_BYTES) { @@ -269,7 +269,7 @@ gst_vcd_parse_src_event (GstPad * pad, GstEvent * event) start = gst_vcd_parse_get_in_offset (start); if (stop_type != GST_SEEK_TYPE_NONE) stop = gst_vcd_parse_get_in_offset (stop); - event = gst_event_new_seek (rate, GST_FORMAT_BYTES, flags, start_type, + event = gst_event_seek_new (rate, GST_FORMAT_BYTES, flags, start_type, start, stop_type, stop); } else { GST_WARNING_OBJECT (vcd, "seek event in non-byte format"); |