mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
18 lines
244 B
C
18 lines
244 B
C
|
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
int
|
||
|
main (int argc, char *argv[])
|
||
|
{
|
||
|
GstPlugin *plugin;
|
||
|
|
||
|
gst_init (&argc, &argv);
|
||
|
|
||
|
plugin = gst_plugin_find ("testplugin");
|
||
|
g_assert (plugin != NULL);
|
||
|
|
||
|
g_print ("testplugin: %s\n", plugin->name);
|
||
|
|
||
|
return 0;
|
||
|
}
|