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