mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
ges: Fix name of GESFrameCompositionMeta API type
g-ir-scanner 1.82.0 failed with a fatal error due to the wrong namespace. Fixes: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3800 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7554>
This commit is contained in:
parent
eb6d083ebe
commit
f1aedd65f4
1 changed files with 2 additions and 1 deletions
|
@ -47,7 +47,8 @@ ges_frame_composition_meta_api_get_type (void)
|
||||||
static const gchar *tags[] = { "video", NULL };
|
static const gchar *tags[] = { "video", NULL };
|
||||||
|
|
||||||
if (g_once_init_enter (&type)) {
|
if (g_once_init_enter (&type)) {
|
||||||
GType _type = gst_meta_api_type_register ("GstFrameCompositionApi", tags);
|
GType _type =
|
||||||
|
gst_meta_api_type_register ("GESFrameCompositionMetaAPI", tags);
|
||||||
g_once_init_leave (&type, _type);
|
g_once_init_leave (&type, _type);
|
||||||
}
|
}
|
||||||
return type;
|
return type;
|
||||||
|
|
Loading…
Reference in a new issue