mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
DEBUG_FUNCPTR'ing
Original commit message from CVS: DEBUG_FUNCPTR'ing
This commit is contained in:
parent
125159cb2f
commit
634dc7bc5b
1 changed files with 5 additions and 8 deletions
|
@ -305,14 +305,11 @@ static void gst_multi_fd_sink_set_property (GObject * object, guint prop_id,
|
|||
static void gst_multi_fd_sink_get_property (GObject * object, guint prop_id,
|
||||
GValue * value, GParamSpec * pspec);
|
||||
|
||||
|
||||
GST_BOILERPLATE (GstMultiFdSink, gst_multi_fd_sink, GstBaseSink,
|
||||
GST_TYPE_BASE_SINK);
|
||||
|
||||
|
||||
static guint gst_multi_fd_sink_signals[LAST_SIGNAL] = { 0 };
|
||||
|
||||
|
||||
static void
|
||||
gst_multi_fd_sink_base_init (gpointer g_class)
|
||||
{
|
||||
|
@ -518,12 +515,12 @@ gst_multi_fd_sink_class_init (GstMultiFdSinkClass * klass)
|
|||
gstelement_class->change_state =
|
||||
GST_DEBUG_FUNCPTR (gst_multi_fd_sink_change_state);
|
||||
|
||||
gstbasesink_class->render = gst_multi_fd_sink_render;
|
||||
gstbasesink_class->render = GST_DEBUG_FUNCPTR (gst_multi_fd_sink_render);
|
||||
|
||||
klass->add = gst_multi_fd_sink_add;
|
||||
klass->remove = gst_multi_fd_sink_remove;
|
||||
klass->clear = gst_multi_fd_sink_clear;
|
||||
klass->get_stats = gst_multi_fd_sink_get_stats;
|
||||
klass->add = GST_DEBUG_FUNCPTR (gst_multi_fd_sink_add);
|
||||
klass->remove = GST_DEBUG_FUNCPTR (gst_multi_fd_sink_remove);
|
||||
klass->clear = GST_DEBUG_FUNCPTR (gst_multi_fd_sink_clear);
|
||||
klass->get_stats = GST_DEBUG_FUNCPTR (gst_multi_fd_sink_get_stats);
|
||||
|
||||
GST_DEBUG_CATEGORY_INIT (multifdsink_debug, "multifdsink", 0, "FD sink");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue