diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-11-16 02:26:00 +0100 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2011-11-16 03:44:17 +0100 |
commit | 6b66057e81295a8f509ecf393ba767ffbf800fb8 (patch) | |
tree | b4fe610982489980b99f28178614d475858775a9 /gst/cdxaparse/gstvcdparse.c | |
parent | c5c67c191318c43374cb6def88663b3f822087df (diff) |
rename eventsrenme-events
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"); |