After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 760767 - gst: ref/unref new enum types in gst_init/deinit
gst: ref/unref new enum types in gst_init/deinit
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other Linux
: Normal normal
: 1.7.2
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2016-01-18 01:14 UTC by Vineeth
Modified: 2016-01-18 07:12 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
add enums in gst_init/deinit (1.58 KB, patch)
2016-01-18 01:14 UTC, Vineeth
committed Details | Review

Description Vineeth 2016-01-18 01:14:05 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
Comment 1 Vineeth 2016-01-18 01:14:57 UTC
Created attachment 319238 [details] [review]
add enums in gst_init/deinit
Comment 2 Sebastian Dröge (slomo) 2016-01-18 07:12:39 UTC
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