mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
gst/gstbuffer.c: Also do a g_type_class_ref() for the subbuffer type in the init function.
Original commit message from CVS: * gst/gstbuffer.c: Also do a g_type_class_ref() for the subbuffer type in the init function.
This commit is contained in:
parent
0d3299c63b
commit
9299939987
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-09-11 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/gstbuffer.c:
|
||||
Also do a g_type_class_ref() for the subbuffer type in
|
||||
the init function.
|
||||
|
||||
2007-09-11 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
|
|
|
@ -142,6 +142,8 @@ _gst_buffer_initialize (void)
|
|||
* see http://bugzilla.gnome.org/show_bug.cgi?id=304551 */
|
||||
ptr = g_type_class_ref (GST_TYPE_BUFFER);
|
||||
g_type_class_unref (ptr);
|
||||
ptr = g_type_class_ref (_gst_subbuffer_type);
|
||||
g_type_class_unref (ptr);
|
||||
}
|
||||
|
||||
GType
|
||||
|
|
Loading…
Reference in a new issue