summaryrefslogtreecommitdiff
path: root/gst/cdxaparse
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@collabora.co.uk>2012-06-20 10:34:48 +0200
committerWim Taymans <wim.taymans@collabora.co.uk>2012-06-20 10:40:42 +0200
commitdbed726057d3b2488c5d514ce14174fdc2dec6a4 (patch)
treec61f18985d429410092874a9fe82a0fb0a2d6c2e /gst/cdxaparse
parent9ad37611489735c2dbdf0296367fc8891355f6a4 (diff)
downloadgstreamer-plugins-bad-dbed726057d3b2488c5d514ce14174fdc2dec6a4.tar.gz
update for task api change
Diffstat (limited to 'gst/cdxaparse')
-rw-r--r--gst/cdxaparse/gstcdxaparse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/cdxaparse/gstcdxaparse.c b/gst/cdxaparse/gstcdxaparse.c
index 88fa4550b..2c82056df 100644
--- a/gst/cdxaparse/gstcdxaparse.c
+++ b/gst/cdxaparse/gstcdxaparse.c
@@ -192,7 +192,7 @@ gst_cdxa_parse_sink_activate_pull (GstPad * sinkpad, gboolean active)
if (active) {
/* if we have a scheduler we can start the task */
gst_pad_start_task (sinkpad, (GstTaskFunction) gst_cdxa_parse_loop,
- sinkpad);
+ sinkpad, NULL);
} else {
gst_pad_stop_task (sinkpad);
}
@@ -466,7 +466,7 @@ gst_cdxa_parse_do_seek (GstCDXAParse * cdxa, GstEvent * event)
/* and restart */
gst_pad_start_task (cdxa->sinkpad,
- (GstTaskFunction) gst_cdxa_parse_loop, cdxa->sinkpad);
+ (GstTaskFunction) gst_cdxa_parse_loop, cdxa->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (cdxa->sinkpad);
return TRUE;