mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
51 lines
777 B
C
51 lines
777 B
C
|
|
||
|
#define GST_PLUGIN_STATIC
|
||
|
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
static gboolean
|
||
|
plugin_init (GModule *module, GstPlugin *plugin)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
GST_PLUGIN_DESC (
|
||
|
GST_VERSION_MAJOR,
|
||
|
GST_VERSION_MINOR,
|
||
|
"testplugin",
|
||
|
plugin_init
|
||
|
);
|
||
|
|
||
|
static gboolean
|
||
|
plugin2_init (GModule *module, GstPlugin *plugin)
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
GST_PLUGIN_DESC (
|
||
|
GST_VERSION_MAJOR,
|
||
|
GST_VERSION_MINOR,
|
||
|
"testplugin2",
|
||
|
plugin2_init
|
||
|
);
|
||
|
|
||
|
int
|
||
|
main (int argc, char *argv[])
|
||
|
{
|
||
|
GstPlugin *plugin;
|
||
|
|
||
|
gst_init (&argc, &argv);
|
||
|
|
||
|
plugin = gst_plugin_find ("testplugin");
|
||
|
g_assert (plugin != NULL);
|
||
|
|
||
|
g_print ("testplugin: %p %s\n", plugin, plugin->name);
|
||
|
|
||
|
plugin = gst_plugin_find ("testplugin2");
|
||
|
g_assert (plugin != NULL);
|
||
|
|
||
|
g_print ("testplugin2: %p %s\n", plugin, plugin->name);
|
||
|
|
||
|
return 0;
|
||
|
}
|