mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gst/: use DEBUG_FUNCPTR for collectpads
Original commit message from CVS: * gst/matroska/matroska-mux.c: (gst_matroska_mux_init): * gst/multipart/multipartmux.c: (gst_multipart_mux_init): * gst/smpte/gstsmpte.c: (gst_smpte_init): * gst/videomixer/videomixer.c: (gst_videomixer_init): use DEBUG_FUNCPTR for collectpads
This commit is contained in:
parent
f53ce6baa7
commit
24461755be
5 changed files with 15 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-03-24 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/matroska/matroska-mux.c: (gst_matroska_mux_init):
|
||||
* gst/multipart/multipartmux.c: (gst_multipart_mux_init):
|
||||
* gst/smpte/gstsmpte.c: (gst_smpte_init):
|
||||
* gst/videomixer/videomixer.c: (gst_videomixer_init):
|
||||
use DEBUG_FUNCPTR for collectpads
|
||||
|
||||
2006-03-24 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/jpeg/gstjpegenc.c: (gst_jpegenc_init), (gst_jpegenc_chain):
|
||||
|
|
|
@ -232,7 +232,8 @@ gst_matroska_mux_init (GstMatroskaMux * mux, GstMatroskaMuxClass * g_class)
|
|||
|
||||
mux->collect = gst_collect_pads_new ();
|
||||
gst_collect_pads_set_function (mux->collect,
|
||||
(GstCollectPadsFunction) gst_matroska_mux_collected, mux);
|
||||
(GstCollectPadsFunction) GST_DEBUG_FUNCPTR (gst_matroska_mux_collected),
|
||||
mux);
|
||||
|
||||
mux->ebml_write = gst_ebml_write_new (mux->srcpad);
|
||||
|
||||
|
|
|
@ -229,7 +229,8 @@ gst_multipart_mux_init (GstMultipartMux * multipart_mux)
|
|||
|
||||
multipart_mux->collect = gst_collect_pads_new ();
|
||||
gst_collect_pads_set_function (multipart_mux->collect,
|
||||
(GstCollectPadsFunction) gst_multipart_mux_collected, multipart_mux);
|
||||
(GstCollectPadsFunction) GST_DEBUG_FUNCPTR (gst_multipart_mux_collected),
|
||||
multipart_mux);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -277,7 +277,7 @@ gst_smpte_init (GstSMPTE * smpte)
|
|||
|
||||
smpte->collect = gst_collect_pads_new ();
|
||||
gst_collect_pads_set_function (smpte->collect,
|
||||
(GstCollectPadsFunction) gst_smpte_collected, smpte);
|
||||
(GstCollectPadsFunction) GST_DEBUG_FUNCPTR (gst_smpte_collected), smpte);
|
||||
gst_collect_pads_start (smpte->collect);
|
||||
|
||||
gst_collect_pads_add_pad (smpte->collect, smpte->sinkpad1,
|
||||
|
|
|
@ -558,7 +558,8 @@ gst_videomixer_init (GstVideoMixer * mix)
|
|||
mix->fps_n = mix->fps_d = 0;
|
||||
|
||||
gst_collect_pads_set_function (mix->collect,
|
||||
(GstCollectPadsFunction) gst_videomixer_collected, mix);
|
||||
(GstCollectPadsFunction) GST_DEBUG_FUNCPTR (gst_videomixer_collected),
|
||||
mix);
|
||||
}
|
||||
|
||||
static GstCaps *
|
||||
|
|
Loading…
Reference in a new issue