mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
4b8c43a3d9
Original commit message from CVS: Fix the plugin testsuite, only registry.c doesn't work yet
21 lines
360 B
C
21 lines
360 B
C
|
|
#include <gst/gst.h>
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
GstPlugin *plugin;
|
|
gboolean loaded;
|
|
|
|
gst_init (&argc, &argv);
|
|
|
|
plugin = gst_plugin_new (".libs/libtestplugin.so");
|
|
g_assert (plugin != NULL);
|
|
|
|
loaded = gst_plugin_load_plugin (plugin);
|
|
g_assert (loaded == TRUE);
|
|
|
|
g_print ("testplugin: %d, %s\n", loaded, plugin->name);
|
|
|
|
return 0;
|
|
}
|