mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-17 21:06:17 +00:00
gstpad: Only register debug funcptr once.
This makes pad initialization 2 times faster and without any contention over the debug funcptr global lock.
This commit is contained in:
parent
8f40effea6
commit
4da0da822a
1 changed files with 18 additions and 10 deletions
28
gst/gstpad.c
28
gst/gstpad.c
|
@ -327,6 +327,17 @@ gst_pad_class_init (GstPadClass * klass)
|
|||
#endif
|
||||
gstobject_class->path_string_separator = ".";
|
||||
|
||||
/* Register common function pointer descriptions */
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_activate_default);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_event_default);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_get_query_types_default);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_query_default);
|
||||
#ifndef GST_REMOVE_DEPRECATED
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_get_internal_links_default);
|
||||
#endif
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_iterate_internal_links_default);
|
||||
GST_DEBUG_REGISTER_FUNCPTR (gst_pad_acceptcaps_default);
|
||||
|
||||
klass->have_data = default_have_data;
|
||||
}
|
||||
|
||||
|
@ -345,19 +356,16 @@ gst_pad_init (GstPad * pad)
|
|||
GST_PAD_CAPS (pad) = NULL;
|
||||
GST_PAD_GETCAPSFUNC (pad) = NULL;
|
||||
|
||||
GST_PAD_ACTIVATEFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_activate_default);
|
||||
GST_PAD_EVENTFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_event_default);
|
||||
GST_PAD_QUERYTYPEFUNC (pad) =
|
||||
GST_DEBUG_FUNCPTR (gst_pad_get_query_types_default);
|
||||
GST_PAD_QUERYFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_query_default);
|
||||
GST_PAD_ACTIVATEFUNC (pad) = gst_pad_activate_default;
|
||||
GST_PAD_EVENTFUNC (pad) = gst_pad_event_default;
|
||||
GST_PAD_QUERYTYPEFUNC (pad) = gst_pad_get_query_types_default;
|
||||
GST_PAD_QUERYFUNC (pad) = gst_pad_query_default;
|
||||
#ifndef GST_REMOVE_DEPRECATED
|
||||
GST_PAD_INTLINKFUNC (pad) =
|
||||
GST_DEBUG_FUNCPTR (gst_pad_get_internal_links_default);
|
||||
GST_PAD_INTLINKFUNC (pad) = gst_pad_get_internal_links_default;
|
||||
#endif
|
||||
GST_PAD_ITERINTLINKFUNC (pad) =
|
||||
GST_DEBUG_FUNCPTR (gst_pad_iterate_internal_links_default);
|
||||
GST_PAD_ITERINTLINKFUNC (pad) = gst_pad_iterate_internal_links_default;
|
||||
|
||||
GST_PAD_ACCEPTCAPSFUNC (pad) = GST_DEBUG_FUNCPTR (gst_pad_acceptcaps_default);
|
||||
GST_PAD_ACCEPTCAPSFUNC (pad) = gst_pad_acceptcaps_default;
|
||||
|
||||
pad->do_buffer_signals = 0;
|
||||
pad->do_event_signals = 0;
|
||||
|
|
Loading…
Reference in a new issue