mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
ges: Update for registry API change
This commit is contained in:
parent
a32f1bd4dc
commit
79ab1b5166
1 changed files with 6 additions and 7 deletions
13
ges/ges.c
13
ges/ges.c
|
@ -36,13 +36,12 @@ static gboolean
|
||||||
ges_check_gnonlin_availability (void)
|
ges_check_gnonlin_availability (void)
|
||||||
{
|
{
|
||||||
gboolean ret = TRUE;
|
gboolean ret = TRUE;
|
||||||
if (!gst_default_registry_check_feature_version ("gnlcomposition",
|
if (!gst_registry_check_feature_version (gst_registry_get (),
|
||||||
GES_GNONLIN_VERSION_NEEDED_MAJOR, GES_GNONLIN_VERSION_NEEDED_MINOR,
|
"gnlcomposition", GES_GNONLIN_VERSION_NEEDED_MAJOR,
|
||||||
GES_GNONLIN_VERSION_NEEDED_MICRO)) {
|
GES_GNONLIN_VERSION_NEEDED_MINOR, GES_GNONLIN_VERSION_NEEDED_MICRO)) {
|
||||||
GST_ERROR
|
GST_ERROR ("GNonLin plugins not found, or not at least version %u.%u.%u",
|
||||||
("GNonLin plugins not found, or not at least version %u.%u.%u",
|
GES_GNONLIN_VERSION_NEEDED_MAJOR, GES_GNONLIN_VERSION_NEEDED_MINOR,
|
||||||
GES_GNONLIN_VERSION_NEEDED_MAJOR,
|
GES_GNONLIN_VERSION_NEEDED_MICRO);
|
||||||
GES_GNONLIN_VERSION_NEEDED_MINOR, GES_GNONLIN_VERSION_NEEDED_MICRO);
|
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in a new issue