mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
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:
parent
f0adebaf6f
commit
d3d0358bfa
3 changed files with 10 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue