mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tracer: mark GstTracerQuarkId as non GEnum
This reverts 72ca02b1de
and marks the enum
accordingly.
This commit is contained in:
parent
03821d18a0
commit
ddc5654b60
2 changed files with 1 additions and 3 deletions
|
@ -677,7 +677,6 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
|
||||||
g_type_class_ref (gst_lock_flags_get_type ());
|
g_type_class_ref (gst_lock_flags_get_type ());
|
||||||
g_type_class_ref (gst_allocator_flags_get_type ());
|
g_type_class_ref (gst_allocator_flags_get_type ());
|
||||||
g_type_class_ref (gst_stream_flags_get_type ());
|
g_type_class_ref (gst_stream_flags_get_type ());
|
||||||
g_type_class_ref (gst_tracer_quark_id_get_type ());
|
|
||||||
|
|
||||||
_priv_gst_event_initialize ();
|
_priv_gst_event_initialize ();
|
||||||
_priv_gst_buffer_initialize ();
|
_priv_gst_buffer_initialize ();
|
||||||
|
@ -1084,7 +1083,6 @@ gst_deinit (void)
|
||||||
g_type_class_unref (g_type_class_peek (gst_allocator_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_allocator_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_stream_flags_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_stream_flags_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_debug_color_mode_get_type ()));
|
g_type_class_unref (g_type_class_peek (gst_debug_color_mode_get_type ()));
|
||||||
g_type_class_unref (g_type_class_peek (gst_tracer_quark_id_get_type ()));
|
|
||||||
|
|
||||||
gst_deinitialized = TRUE;
|
gst_deinitialized = TRUE;
|
||||||
GST_INFO ("deinitialized GStreamer");
|
GST_INFO ("deinitialized GStreamer");
|
||||||
|
|
|
@ -45,7 +45,7 @@ gboolean gst_tracer_register (GstPlugin * plugin, const gchar * name, GType type
|
||||||
|
|
||||||
/* These enums need to match the number and order
|
/* These enums need to match the number and order
|
||||||
* of strings declared in _quark_table, in gsttracerutils.c */
|
* of strings declared in _quark_table, in gsttracerutils.c */
|
||||||
typedef enum _GstTracerQuarkId
|
typedef enum /*< skip >*/
|
||||||
{
|
{
|
||||||
GST_TRACER_QUARK_HOOK_PAD_PUSH_PRE = 0,
|
GST_TRACER_QUARK_HOOK_PAD_PUSH_PRE = 0,
|
||||||
GST_TRACER_QUARK_HOOK_PAD_PUSH_POST,
|
GST_TRACER_QUARK_HOOK_PAD_PUSH_POST,
|
||||||
|
|
Loading…
Reference in a new issue