From 315c5f87e27ef0408bc93065d2950c1abcf294b8 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Mon, 16 Mar 2020 21:53:29 -0400 Subject: [PATCH] gst-full: Create 'alpha' element It is the only plugin built by the CI, with coreelements. --- examples/static-plugins/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/static-plugins/main.c b/examples/static-plugins/main.c index 7124232d69..a205b7834a 100644 --- a/examples/static-plugins/main.c +++ b/examples/static-plugins/main.c @@ -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; }