mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
bufferlist: Initialize the GType cache for the bufferlist again
This was accidentially removed with last commit.
This commit is contained in:
parent
d5c0b3311b
commit
699385f715
1 changed files with 4 additions and 1 deletions
|
@ -171,7 +171,10 @@ G_DEFINE_TYPE (GstBufferList, gst_buffer_list, GST_TYPE_MINI_OBJECT);
|
|||
void
|
||||
_gst_buffer_list_initialize (void)
|
||||
{
|
||||
g_type_class_ref (gst_buffer_list_get_type ());
|
||||
GType type = gst_buffer_list_get_type ();
|
||||
|
||||
g_type_class_ref (type);
|
||||
_gst_buffer_list_type = type;
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue