summaryrefslogtreecommitdiff
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
parent9ad37611489735c2dbdf0296367fc8891355f6a4 (diff)
downloadgstreamer-plugins-bad-dbed726057d3b2488c5d514ce14174fdc2dec6a4.tar.gz
update for task api change
-rw-r--r--ext/gme/gstgme.c5
-rw-r--r--ext/mimic/gstmimenc.c3
-rw-r--r--ext/modplug/gstmodplug.cc4
-rw-r--r--ext/mpeg2enc/gstmpeg2enc.cc2
-rw-r--r--ext/mplex/gstmplex.cc2
-rw-r--r--ext/musepack/gstmusepackdec.c4
-rw-r--r--ext/sndfile/gstsfsink.c2
-rw-r--r--ext/spc/gstspc.c5
-rw-r--r--ext/timidity/gsttimidity.c5
-rw-r--r--ext/timidity/gstwildmidi.c7
-rw-r--r--gst/aiff/aiffparse.c4
-rw-r--r--gst/asfmux/gstasfparse.c3
-rw-r--r--gst/cdxaparse/gstcdxaparse.c4
-rw-r--r--gst/freeze/gstfreeze.c2
-rw-r--r--gst/hls/gsthlsdemux.c4
-rw-r--r--gst/liveadder/liveadder.c2
-rw-r--r--gst/mpegdemux/gstmpegdemux.c4
-rw-r--r--gst/mpegtsdemux/mpegtsbase.c6
-rw-r--r--gst/mxf/mxfdemux.c6
-rw-r--r--gst/nsf/gstnsf.c2
-rw-r--r--gst/nuvdemux/gstnuvdemux.c3
-rw-r--r--gst/rawparse/gstrawparse.c3
-rw-r--r--gst/tta/gstttaparse.c5
23 files changed, 49 insertions, 38 deletions
diff --git a/ext/gme/gstgme.c b/ext/gme/gstgme.c
index d787dbaf0..b349df734 100644
--- a/ext/gme/gstgme.c
+++ b/ext/gme/gstgme.c
@@ -256,7 +256,7 @@ gst_gme_dec_src_event (GstPad * pad, GstObject * parent, GstEvent * event)
gme->seeking = TRUE;
gst_pad_start_task (gme->srcpad, (GstTaskFunction) gst_gme_play,
- gme->srcpad);
+ gme->srcpad, NULL);
GST_PAD_STREAM_UNLOCK (gme->srcpad);
result = TRUE;
@@ -461,7 +461,8 @@ gme_setup (GstGmeDec * gme)
gst_segment_init (&seg, GST_FORMAT_TIME);
gst_pad_push_event (gme->srcpad, gst_event_new_segment (&seg));
- gst_pad_start_task (gme->srcpad, (GstTaskFunction) gst_gme_play, gme->srcpad);
+ gst_pad_start_task (gme->srcpad, (GstTaskFunction) gst_gme_play, gme->srcpad,
+ NULL);
gme->initialized = TRUE;
gme->seeking = FALSE;
diff --git a/ext/mimic/gstmimenc.c b/ext/mimic/gstmimenc.c
index f4957ccb1..0a3a241fd 100644
--- a/ext/mimic/gstmimenc.c
+++ b/ext/mimic/gstmimenc.c
@@ -597,7 +597,8 @@ gst_mim_enc_change_state (GstElement * element, GstStateChange transition)
}
GST_OBJECT_UNLOCK (mimenc);
if (paused_mode) {
- if (!gst_pad_start_task (mimenc->srcpad, paused_mode_task, mimenc)) {
+ if (!gst_pad_start_task (mimenc->srcpad, paused_mode_task, mimenc,
+ NULL)) {
ret = GST_STATE_CHANGE_FAILURE;
GST_ERROR_OBJECT (mimenc, "Can not start task");
}
diff --git a/ext/modplug/gstmodplug.cc b/ext/modplug/gstmodplug.cc
index 645f4fd13..a98014207 100644
--- a/ext/modplug/gstmodplug.cc
+++ b/ext/modplug/gstmodplug.cc
@@ -402,7 +402,7 @@ gst_modplug_do_seek (GstModPlug * modplug, GstEvent * event)
gst_util_uint64_scale_int (cur, modplug->frequency, GST_SECOND);
gst_pad_start_task (modplug->sinkpad,
- (GstTaskFunction) gst_modplug_loop, modplug);
+ (GstTaskFunction) gst_modplug_loop, modplug, NULL);
GST_PAD_STREAM_UNLOCK (modplug->sinkpad);
@@ -593,7 +593,7 @@ gst_modplug_sinkpad_activate_mode (GstPad * pad, GstObject * parent,
case GST_PAD_MODE_PULL:
if (active) {
res = gst_pad_start_task (pad, (GstTaskFunction) gst_modplug_loop,
- modplug);
+ modplug, NULL);
} else {
res = gst_pad_stop_task (pad);
}
diff --git a/ext/mpeg2enc/gstmpeg2enc.cc b/ext/mpeg2enc/gstmpeg2enc.cc
index ec86693cd..1482ae168 100644
--- a/ext/mpeg2enc/gstmpeg2enc.cc
+++ b/ext/mpeg2enc/gstmpeg2enc.cc
@@ -406,7 +406,7 @@ gst_mpeg2enc_setcaps (GstMpeg2enc * enc, GstPad * pad, GstCaps * caps)
/* now that we have all the setup and buffers are expected incoming;
* task can get going */
- gst_pad_start_task (enc->srcpad, (GstTaskFunction) gst_mpeg2enc_loop, enc);
+ gst_pad_start_task (enc->srcpad, (GstTaskFunction) gst_mpeg2enc_loop, enc, NULL);
return TRUE;
diff --git a/ext/mplex/gstmplex.cc b/ext/mplex/gstmplex.cc
index d548f7832..fc5c459bf 100644
--- a/ext/mplex/gstmplex.cc
+++ b/ext/mplex/gstmplex.cc
@@ -537,7 +537,7 @@ gst_mplex_start_task (GstMplex * mplex)
if (G_UNLIKELY (mplex->srcresult == GST_FLOW_CUSTOM_SUCCESS)
&& mplex->job->video_tracks == mplex->num_vpads
&& mplex->job->audio_tracks == mplex->num_apads) {
- gst_pad_start_task (mplex->srcpad, (GstTaskFunction) gst_mplex_loop, mplex);
+ gst_pad_start_task (mplex->srcpad, (GstTaskFunction) gst_mplex_loop, mplex, NULL);
mplex->srcresult = GST_FLOW_OK;
}
}
diff --git a/ext/musepack/gstmusepackdec.c b/ext/musepack/gstmusepackdec.c
index 73de68234..10a0f0d8e 100644
--- a/ext/musepack/gstmusepackdec.c
+++ b/ext/musepack/gstmusepackdec.c
@@ -261,7 +261,7 @@ gst_musepackdec_handle_seek_event (GstMusepackDec * dec, GstEvent * event)
GST_DEBUG_OBJECT (dec, "seek successful");
gst_pad_start_task (dec->sinkpad,
- (GstTaskFunction) gst_musepackdec_loop, dec->sinkpad);
+ (GstTaskFunction) gst_musepackdec_loop, dec->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (dec->sinkpad);
@@ -493,7 +493,7 @@ gst_musepackdec_sink_activate_pull (GstPad * sinkpad, gboolean active)
if (active) {
result = gst_pad_start_task (sinkpad,
- (GstTaskFunction) gst_musepackdec_loop, sinkpad);
+ (GstTaskFunction) gst_musepackdec_loop, sinkpad, NULL);
} else {
result = gst_pad_stop_task (sinkpad);
}
diff --git a/ext/sndfile/gstsfsink.c b/ext/sndfile/gstsfsink.c
index 56dc4b006..06fb451b6 100644
--- a/ext/sndfile/gstsfsink.c
+++ b/ext/sndfile/gstsfsink.c
@@ -459,7 +459,7 @@ gst_sf_sink_activate_pull (GstBaseSink * basesink, gboolean active)
if (active) {
/* start task */
result = gst_pad_start_task (basesink->sinkpad,
- (GstTaskFunction) gst_sf_sink_loop, basesink->sinkpad);
+ (GstTaskFunction) gst_sf_sink_loop, basesink->sinkpad, NULL);
} else {
/* step 2, make sure streaming finishes */
result = gst_pad_stop_task (basesink->sinkpad);
diff --git a/ext/spc/gstspc.c b/ext/spc/gstspc.c
index 4d76b2425..e5950c576 100644
--- a/ext/spc/gstspc.c
+++ b/ext/spc/gstspc.c
@@ -325,7 +325,7 @@ gst_spc_dec_src_event (GstPad * pad, GstEvent * event)
spc->seeking = TRUE;
gst_pad_start_task (spc->srcpad, (GstTaskFunction) spc_play,
- spc->srcpad);
+ spc->srcpad, NULL);
GST_PAD_STREAM_UNLOCK (spc->srcpad);
result = TRUE;
@@ -534,7 +534,8 @@ spc_setup (GstSpcDec * spc)
gst_pad_push_event (spc->srcpad, gst_event_new_new_segment (FALSE, 1.0,
GST_FORMAT_TIME, 0, -1, 0));
- gst_pad_start_task (spc->srcpad, (GstTaskFunction) spc_play, spc->srcpad);
+ gst_pad_start_task (spc->srcpad, (GstTaskFunction) spc_play, spc->srcpad,
+ NULL);
/* We can't unreference this buffer because we might need to re-initialize
* the emulator with the original data during a reverse seek
diff --git a/ext/timidity/gsttimidity.c b/ext/timidity/gsttimidity.c
index 1857d53b7..89e592ecf 100644
--- a/ext/timidity/gsttimidity.c
+++ b/ext/timidity/gsttimidity.c
@@ -423,7 +423,7 @@ gst_timidity_src_event (GstPad * pad, GstEvent * event)
timidity->o_seek = TRUE;
gst_pad_start_task (timidity->sinkpad,
- (GstTaskFunction) gst_timidity_loop, timidity->sinkpad);
+ (GstTaskFunction) gst_timidity_loop, timidity->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (timidity->sinkpad);
GST_DEBUG ("seek done");
@@ -451,7 +451,8 @@ static gboolean
gst_timidity_activatepull (GstPad * pad, gboolean active)
{
if (active) {
- return gst_pad_start_task (pad, (GstTaskFunction) gst_timidity_loop, pad);
+ return gst_pad_start_task (pad, (GstTaskFunction) gst_timidity_loop, pad,
+ NULL);
} else {
return gst_pad_stop_task (pad);
}
diff --git a/ext/timidity/gstwildmidi.c b/ext/timidity/gstwildmidi.c
index a37264c21..260624594 100644
--- a/ext/timidity/gstwildmidi.c
+++ b/ext/timidity/gstwildmidi.c
@@ -524,7 +524,7 @@ gst_wildmidi_do_seek (GstWildmidi * wildmidi, GstEvent * event)
gst_wildmidi_get_new_segment_event (wildmidi, GST_FORMAT_TIME));
gst_pad_start_task (wildmidi->sinkpad,
- (GstTaskFunction) gst_wildmidi_loop, wildmidi->sinkpad);
+ (GstTaskFunction) gst_wildmidi_loop, wildmidi->sinkpad, NULL);
wildmidi->discont = TRUE;
GST_PAD_STREAM_UNLOCK (wildmidi->sinkpad);
@@ -567,7 +567,8 @@ static gboolean
gst_wildmidi_activatepull (GstPad * pad, gboolean active)
{
if (active) {
- return gst_pad_start_task (pad, (GstTaskFunction) gst_wildmidi_loop, pad);
+ return gst_pad_start_task (pad, (GstTaskFunction) gst_wildmidi_loop, pad,
+ NULL);
} else {
return gst_pad_stop_task (pad);
}
@@ -777,7 +778,7 @@ gst_wildmidi_sink_event (GstPad * pad, GstEvent * event)
wildmidi->state = GST_WILDMIDI_STATE_PARSE;
/* now start the parsing task */
gst_pad_start_task (wildmidi->sinkpad,
- (GstTaskFunction) gst_wildmidi_loop, wildmidi->sinkpad);
+ (GstTaskFunction) gst_wildmidi_loop, wildmidi->sinkpad, NULL);
/* don't forward the event */
gst_event_unref (event);
break;
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);
diff --git a/gst/asfmux/gstasfparse.c b/gst/asfmux/gstasfparse.c
index 32265a6b6..0cf2671ee 100644
--- a/gst/asfmux/gstasfparse.c
+++ b/gst/asfmux/gstasfparse.c
@@ -100,7 +100,8 @@ gst_asf_parse_sink_activate_mode (GstPad * pad, GstObject * parent,
case GST_PAD_MODE_PULL:
if (active) {
res =
- gst_pad_start_task (pad, (GstTaskFunction) gst_asf_parse_loop, pad);
+ gst_pad_start_task (pad, (GstTaskFunction) gst_asf_parse_loop, pad,
+ NULL);
} else {
res = gst_pad_stop_task (pad);
}
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;
diff --git a/gst/freeze/gstfreeze.c b/gst/freeze/gstfreeze.c
index 9d50828be..f4022b86a 100644
--- a/gst/freeze/gstfreeze.c
+++ b/gst/freeze/gstfreeze.c
@@ -316,7 +316,7 @@ gst_freeze_sink_activate_pull (GstPad * sinkpad, gboolean active)
if (active) {
/* if we have a scheduler we can start the task */
result = gst_pad_start_task (sinkpad,
- (GstTaskFunction) gst_freeze_loop, sinkpad);
+ (GstTaskFunction) gst_freeze_loop, sinkpad, NULL);
} else {
result = gst_pad_stop_task (sinkpad);
}
diff --git a/gst/hls/gsthlsdemux.c b/gst/hls/gsthlsdemux.c
index 8e054b990..68ba065e7 100644
--- a/gst/hls/gsthlsdemux.c
+++ b/gst/hls/gsthlsdemux.c
@@ -234,14 +234,14 @@ gst_hls_demux_init (GstHLSDemux * demux)
/* Updates task */
g_rec_mutex_init (&demux->updates_lock);
demux->updates_task =
- gst_task_new ((GstTaskFunction) gst_hls_demux_updates_loop, demux);
+ gst_task_new ((GstTaskFunction) gst_hls_demux_updates_loop, demux, NULL);
gst_task_set_lock (demux->updates_task, &demux->updates_lock);
g_mutex_init (&demux->updates_timed_lock);
/* Streaming task */
g_rec_mutex_init (&demux->stream_lock);
demux->stream_task =
- gst_task_new ((GstTaskFunction) gst_hls_demux_stream_loop, demux);
+ gst_task_new ((GstTaskFunction) gst_hls_demux_stream_loop, demux, NULL);
gst_task_set_lock (demux->stream_task, &demux->stream_lock);
}
diff --git a/gst/liveadder/liveadder.c b/gst/liveadder/liveadder.c
index e3c6278e5..5cdced4d0 100644
--- a/gst/liveadder/liveadder.c
+++ b/gst/liveadder/liveadder.c
@@ -458,7 +458,7 @@ gst_live_adder_src_activate_push (GstPad * pad, gboolean active)
/* start pushing out buffers */
GST_DEBUG_OBJECT (adder, "Starting task on srcpad");
gst_pad_start_task (adder->srcpad,
- (GstTaskFunction) gst_live_adder_loop, adder);
+ (GstTaskFunction) gst_live_adder_loop, adder, NULL);
} else {
/* make sure all data processing stops ASAP */
gst_live_adder_flush_start (adder);
diff --git a/gst/mpegdemux/gstmpegdemux.c b/gst/mpegdemux/gstmpegdemux.c
index 787ac052a..cfea9a328 100644
--- a/gst/mpegdemux/gstmpegdemux.c
+++ b/gst/mpegdemux/gstmpegdemux.c
@@ -1243,7 +1243,7 @@ gst_flups_demux_handle_seek_pull (GstFluPSDemux * demux, GstEvent * event)
gst_flups_demux_mark_discont (demux, TRUE, TRUE);
gst_pad_start_task (demux->sinkpad,
- (GstTaskFunction) gst_flups_demux_loop, demux->sinkpad);
+ (GstTaskFunction) gst_flups_demux_loop, demux->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (demux->sinkpad);
@@ -2920,7 +2920,7 @@ gst_flups_demux_sink_activate_pull (GstPad * sinkpad, GstObject * parent,
demux->random_access = TRUE;
gst_object_unref (demux);
return gst_pad_start_task (sinkpad, (GstTaskFunction) gst_flups_demux_loop,
- sinkpad);
+ sinkpad, NULL);
} else {
demux->random_access = FALSE;
gst_object_unref (demux);
diff --git a/gst/mpegtsdemux/mpegtsbase.c b/gst/mpegtsdemux/mpegtsbase.c
index 8887cf42a..4083c8eee 100644
--- a/gst/mpegtsdemux/mpegtsbase.c
+++ b/gst/mpegtsdemux/mpegtsbase.c
@@ -1712,7 +1712,8 @@ mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
}
//else
done:
- gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base);
+ gst_pad_start_task (base->sinkpad, (GstTaskFunction) mpegts_base_loop, base,
+ NULL);
push_mode:
GST_PAD_STREAM_UNLOCK (base->sinkpad);
return ret == GST_FLOW_OK;
@@ -1766,7 +1767,8 @@ mpegts_base_sink_activate_mode (GstPad * pad, GstObject * parent,
base->mode = BASE_MODE_SCANNING;
base->packetizer->calculate_offset = TRUE;
res =
- gst_pad_start_task (pad, (GstTaskFunction) mpegts_base_loop, base);
+ gst_pad_start_task (pad, (GstTaskFunction) mpegts_base_loop, base,
+ NULL);
} else
res = gst_pad_stop_task (pad);
break;
diff --git a/gst/mxf/mxfdemux.c b/gst/mxf/mxfdemux.c
index e11a568a4..f782bb393 100644
--- a/gst/mxf/mxfdemux.c
+++ b/gst/mxf/mxfdemux.c
@@ -3360,7 +3360,7 @@ gst_mxf_demux_seek_pull (GstMXFDemux * demux, GstEvent * event)
demux->seqnum = seqnum;
gst_pad_start_task (demux->sinkpad,
- (GstTaskFunction) gst_mxf_demux_loop, demux->sinkpad);
+ (GstTaskFunction) gst_mxf_demux_loop, demux->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (demux->sinkpad);
@@ -3380,7 +3380,7 @@ wrong_rate:
unresolved_metadata:
{
gst_pad_start_task (demux->sinkpad,
- (GstTaskFunction) gst_mxf_demux_loop, demux->sinkpad);
+ (GstTaskFunction) gst_mxf_demux_loop, demux->sinkpad, NULL);
GST_PAD_STREAM_UNLOCK (demux->sinkpad);
GST_WARNING_OBJECT (demux, "metadata can't be resolved");
return FALSE;
@@ -3592,7 +3592,7 @@ gst_mxf_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
demux->random_access = TRUE;
gst_object_unref (demux);
return gst_pad_start_task (sinkpad, (GstTaskFunction) gst_mxf_demux_loop,
- sinkpad);
+ sinkpad, NULL);
} else {
demux->random_access = FALSE;
gst_object_unref (demux);
diff --git a/gst/nsf/gstnsf.c b/gst/nsf/gstnsf.c
index 5a22cd99a..3c155de38 100644
--- a/gst/nsf/gstnsf.c
+++ b/gst/nsf/gstnsf.c
@@ -397,7 +397,7 @@ start_play_tune (GstNsfDec * nsfdec)
gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_TIME, 0, -1, 0));
res = gst_pad_start_task (nsfdec->srcpad,
- (GstTaskFunction) play_loop, nsfdec->srcpad);
+ (GstTaskFunction) play_loop, nsfdec->srcpad, NULL);
return res;
diff --git a/gst/nuvdemux/gstnuvdemux.c b/gst/nuvdemux/gstnuvdemux.c
index e3b8fd93d..b59b8e704 100644
--- a/gst/nuvdemux/gstnuvdemux.c
+++ b/gst/nuvdemux/gstnuvdemux.c
@@ -824,7 +824,8 @@ gst_nuv_demux_sink_activate_pull (GstPad * sinkpad, gboolean active)
GstNuvDemux *nuv = GST_NUV_DEMUX (gst_pad_get_parent (sinkpad));
if (active) {
- gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad);
+ gst_pad_start_task (sinkpad, (GstTaskFunction) gst_nuv_demux_loop, sinkpad,
+ NULL);
} else {
gst_pad_stop_task (sinkpad);
}
diff --git a/gst/rawparse/gstrawparse.c b/gst/rawparse/gstrawparse.c
index 2db07a630..dcff378f3 100644
--- a/gst/rawparse/gstrawparse.c
+++ b/gst/rawparse/gstrawparse.c
@@ -864,7 +864,8 @@ gst_raw_parse_handle_seek_pull (GstRawParse * rp, GstEvent * event)
rp->discont = TRUE;
GST_LOG_OBJECT (rp, "start streaming");
- gst_pad_start_task (rp->sinkpad, (GstTaskFunction) gst_raw_parse_loop, rp);
+ gst_pad_start_task (rp->sinkpad, (GstTaskFunction) gst_raw_parse_loop, rp,
+ NULL);
GST_PAD_STREAM_UNLOCK (rp->sinkpad);
diff --git a/gst/tta/gstttaparse.c b/gst/tta/gstttaparse.c
index 80f93b7b9..fe1f4f0a0 100644
--- a/gst/tta/gstttaparse.c
+++ b/gst/tta/gstttaparse.c
@@ -215,7 +215,7 @@ gst_tta_parse_src_event (GstPad * pad, GstEvent * event)
ttaparse->num_frames * FRAME_TIME * GST_SECOND, 0));
gst_pad_start_task (ttaparse->sinkpad,
- (GstTaskFunction) gst_tta_parse_loop, ttaparse);
+ (GstTaskFunction) gst_tta_parse_loop, ttaparse, NULL);
GST_PAD_STREAM_UNLOCK (ttaparse->sinkpad);
@@ -312,7 +312,8 @@ gst_tta_parse_activate_pull (GstPad * pad, gboolean active)
GstTtaParse *ttaparse = GST_TTA_PARSE (GST_OBJECT_PARENT (pad));
if (active) {
- gst_pad_start_task (pad, (GstTaskFunction) gst_tta_parse_loop, ttaparse);
+ gst_pad_start_task (pad, (GstTaskFunction) gst_tta_parse_loop, ttaparse,
+ NULL);
} else {
gst_pad_stop_task (pad);
}