gstreamer/testsuite/plugin/dynamic.c
Thomas Vander Stichele a967370df5 gst-indent run on core
Original commit message from CVS:
gst-indent run on core
2004-03-13 15:27:01 +00:00

24 lines
422 B
C

#include <gst/gst.h>
int
main (int argc, char *argv[])
{
GstPlugin *plugin;
GError *error = NULL;
gst_init (&argc, &argv);
plugin = gst_plugin_load_file (".libs/libtestplugin.so", &error);
g_assert (plugin != NULL);
if (error) {
g_print ("ERROR loading plug-in: %s\n", error->message);
g_free (error);
return 1;
}
g_print ("testplugin: %s\n", gst_plugin_get_name (plugin));
return 0;
}