mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 03:31:05 +00:00
315c5f87e2
It is the only plugin built by the CI, with coreelements.
21 lines
379 B
C
21 lines
379 B
C
#include <gst/gst.h>
|
|
#include <gst/gstinitstaticplugins.h>
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GstElement *e;
|
|
|
|
gst_init (&argc, &argv);
|
|
gst_init_static_plugins ();
|
|
|
|
e = gst_element_factory_make ("identity", NULL);
|
|
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;
|
|
}
|