gst/: use DEBUG_FUNCPTR for collectpads
authorStefan Kost <ensonic@users.sourceforge.net>
Fri, 24 Mar 2006 17:11:56 +0000 (17:11 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Fri, 24 Mar 2006 17:11:56 +0000 (17:11 +0000)
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

ChangeLog
gst/matroska/matroska-mux.c
gst/multipart/multipartmux.c
gst/smpte/gstsmpte.c
gst/videomixer/videomixer.c

index 736e520..a540b3b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
index 729075e..4c054f1 100644 (file)
@@ -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);
 
index 8bcad11..1057bd3 100644 (file)
@@ -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
index a87b4d9..02cafb9 100644 (file)
@@ -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,
index 2878458..03f685a 100644 (file)
@@ -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 *