diff --git a/ChangeLog b/ChangeLog index 2416a4520b..9b92406e98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-03-24 Stefan Kost + + * 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 * docs/plugins/Makefile.am: diff --git a/ext/ogg/gstoggmux.c b/ext/ogg/gstoggmux.c index be0e01276f..44f100bcc4 100644 --- a/ext/ogg/gstoggmux.c +++ b/ext/ogg/gstoggmux.c @@ -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); } diff --git a/gst/adder/gstadder.c b/gst/adder/gstadder.c index 5ac28d8560..6138ffa8ea 100644 --- a/gst/adder/gstadder.c +++ b/gst/adder/gstadder.c @@ -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