gst-full: Create 'alpha' element

It is the only plugin built by the CI, with coreelements.
This commit is contained in:
Xavier Claessens 2020-03-16 21:53:29 -04:00
parent 66d22c103b
commit 315c5f87e2

View file

@ -13,5 +13,9 @@ main (int argc, char *argv[])
g_assert_nonnull (e);
g_object_unref (e);
e = gst_element_factory_make ("alpha", NULL);
g_assert_nonnull (e);
g_object_unref (e);
return 0;
}