gstreamer/testsuite/plugin/dynamic.c
Thomas Vander Stichele 25b21e82f5 fixing tests
Original commit message from CVS:
fixing tests
2002-07-01 10:41:39 +00:00

28 lines
494 B
C

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