GNOME Bugzilla – Bug 760767
gst: ref/unref new enum types in gst_init/deinit
Last modified: 2016-01-18 07:12:50 UTC
gst_tracer_value_scope_get_type and gst_tracer_value_flags_get_type are not added to gst_init/deinit() leading to below errors while running make check FIXME: please add to the following to gst/gst.c init_post(): g_type_class_ref (gst_tracer_value_scope_get_type ()); g_type_class_ref (gst_tracer_value_flags_get_type ()); make: *** [check-enum-gettypes] Error 1 FIXME: please add to the following to gst/gst.c gst_deinit(): g_type_class_unref (g_type_class_peek (gst_tracer_value_scope_get_type ())); g_type_class_unref (g_type_class_peek (gst_tracer_value_flags_get_type ())); make: *** [check-enum-gettypes] Error 1
Created attachment 319238 [details] [review] add enums in gst_init/deinit
commit 843d120c2feacf90ea7435d733cbed63d29620c2 Author: Vineeth TM <vineeth.tm@samsung.com> Date: Mon Jan 18 10:13:02 2016 +0900 gst: ref/unref new enum types in gst_init/deinit https://bugzilla.gnome.org/show_bug.cgi?id=760767