[Bug 760767] New: gst: ref/unref new enum types in gst_init/deinit
GStreamer (GNOME Bugzilla)
bugzilla at gnome.org
Sun Jan 17 17:14:05 PST 2016
https://bugzilla.gnome.org/show_bug.cgi?id=760767
Bug ID: 760767
Summary: gst: ref/unref new enum types in gst_init/deinit
Classification: Platform
Product: GStreamer
Version: git master
OS: Linux
Status: NEW
Severity: normal
Priority: Normal
Component: gstreamer (core)
Assignee: gstreamer-bugs at lists.freedesktop.org
Reporter: vineeth.tm at samsung.com
QA Contact: gstreamer-bugs at lists.freedesktop.org
GNOME version: ---
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
--
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.
More information about the gstreamer-bugs
mailing list