mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 23:58:17 +00:00
aggregator: remove pointless GST_DEBUG_FUNCPTR
Not useful for GObject vfuncs.
This commit is contained in:
parent
773e426616
commit
45ae4d7f9c
1 changed files with 4 additions and 4 deletions
|
@ -1821,7 +1821,7 @@ pad_activate_mode_func (GstPad * pad,
|
||||||
G_DEFINE_TYPE (GstAggregatorPad, gst_aggregator_pad, GST_TYPE_PAD);
|
G_DEFINE_TYPE (GstAggregatorPad, gst_aggregator_pad, GST_TYPE_PAD);
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_pad_constructed (GObject * object)
|
gst_aggregator_pad_constructed (GObject * object)
|
||||||
{
|
{
|
||||||
GstPad *pad = GST_PAD (object);
|
GstPad *pad = GST_PAD (object);
|
||||||
|
|
||||||
|
@ -1867,9 +1867,9 @@ gst_aggregator_pad_class_init (GstAggregatorPadClass * klass)
|
||||||
|
|
||||||
g_type_class_add_private (klass, sizeof (GstAggregatorPadPrivate));
|
g_type_class_add_private (klass, sizeof (GstAggregatorPadPrivate));
|
||||||
|
|
||||||
gobject_class->constructed = GST_DEBUG_FUNCPTR (_pad_constructed);
|
gobject_class->constructed = gst_aggregator_pad_constructed;
|
||||||
gobject_class->finalize = GST_DEBUG_FUNCPTR (gst_aggregator_pad_finalize);
|
gobject_class->finalize = gst_aggregator_pad_finalize;
|
||||||
gobject_class->dispose = GST_DEBUG_FUNCPTR (gst_aggregator_pad_dispose);
|
gobject_class->dispose = gst_aggregator_pad_dispose;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue