use DEBUG_FUNCPTR for collectpads

Original commit message from CVS:
* ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
* gst/adder/gstadder.c: (gst_adder_init):
use DEBUG_FUNCPTR for collectpads
This commit is contained in:
Stefan Kost 2006-03-24 17:11:53 +00:00
parent f0adebaf6f
commit d3d0358bfa
3 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-03-24 Stefan Kost <ensonic@users.sf.net>
* ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
* gst/adder/gstadder.c: (gst_adder_init):
use DEBUG_FUNCPTR for collectpads
2006-03-24 Stefan Kost <ensonic@users.sf.net>
* docs/plugins/Makefile.am:

View file

@ -308,7 +308,8 @@ gst_ogg_mux_init (GstOggMux * ogg_mux)
ogg_mux->collect = gst_collect_pads_new ();
gst_collect_pads_set_function (ogg_mux->collect,
(GstCollectPadsFunction) gst_ogg_mux_collected, ogg_mux);
(GstCollectPadsFunction) GST_DEBUG_FUNCPTR (gst_ogg_mux_collected),
ogg_mux);
gst_ogg_mux_clear (ogg_mux);
}

View file

@ -306,7 +306,8 @@ gst_adder_init (GstAdder * adder)
/* keep track of the sinkpads requested */
adder->collect = gst_collect_pads_new ();
gst_collect_pads_set_function (adder->collect, gst_adder_collected, adder);
gst_collect_pads_set_function (adder->collect,
GST_DEBUG_FUNCPTR (gst_adder_collected), adder);
}
static void