gstreamer/examples/static-plugins/main.c
Xavier Claessens 7fa292406e Add example using gstreamer-full
It will be used by the CI to verify we can build it.
2020-03-04 08:28:11 -05:00

17 lines
284 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);
return 0;
}