mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
gst: ref/unref taglist scope enum in gst_init()
Fixes make check and distcheck
This commit is contained in:
parent
dc837f8f60
commit
1118c9264f
1 changed files with 2 additions and 0 deletions
|
@ -711,6 +711,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
|
|||
g_type_class_ref (gst_structure_change_type_get_type ());
|
||||
g_type_class_ref (gst_tag_merge_mode_get_type ());
|
||||
g_type_class_ref (gst_tag_flag_get_type ());
|
||||
g_type_class_ref (gst_tag_scope_get_type ());
|
||||
g_type_class_ref (gst_task_pool_get_type ());
|
||||
g_type_class_ref (gst_task_state_get_type ());
|
||||
g_type_class_ref (gst_toc_entry_type_get_type ());
|
||||
|
@ -1082,6 +1083,7 @@ gst_deinit (void)
|
|||
g_type_class_unref (g_type_class_peek (gst_buffering_mode_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_tag_merge_mode_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_tag_flag_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_tag_scope_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_task_state_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_toc_entry_type_get_type ()));
|
||||
g_type_class_unref (g_type_class_peek (gst_toc_scope_get_type ()));
|
||||
|
|
Loading…
Reference in a new issue