diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-20 10:34:48 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2012-06-20 10:40:42 +0200 |
commit | dbed726057d3b2488c5d514ce14174fdc2dec6a4 (patch) | |
tree | c61f18985d429410092874a9fe82a0fb0a2d6c2e /gst/aiff | |
parent | 9ad37611489735c2dbdf0296367fc8891355f6a4 (diff) |
update for task api change
Diffstat (limited to 'gst/aiff')
-rw-r--r-- | gst/aiff/aiffparse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/aiff/aiffparse.c b/gst/aiff/aiffparse.c index 4fe5f64e4..d6edef2fb 100644 --- a/gst/aiff/aiffparse.c +++ b/gst/aiff/aiffparse.c @@ -480,7 +480,7 @@ gst_aiff_parse_perform_seek (GstAiffParse * aiff, GstEvent * event) aiff->segment_running = TRUE; if (!aiff->streaming) { gst_pad_start_task (aiff->sinkpad, (GstTaskFunction) gst_aiff_parse_loop, - aiff->sinkpad); + aiff->sinkpad, NULL); } GST_PAD_STREAM_UNLOCK (aiff->sinkpad); @@ -1600,7 +1600,7 @@ gst_aiff_parse_sink_activate_pull (GstPad * sinkpad, gboolean active) if (active) { aiff->segment_running = TRUE; return gst_pad_start_task (sinkpad, (GstTaskFunction) gst_aiff_parse_loop, - sinkpad); + sinkpad, NULL); } else { aiff->segment_running = FALSE; return gst_pad_stop_task (sinkpad); |