gstreamer/tests/old/testsuite/plugin/testplugin2.c
David Schleef 26da835878 Fixes for new caps. A few tests disabled.
Original commit message from CVS:
Fixes for new caps.  A few tests disabled.
2003-11-29 00:14:13 +00:00

30 lines
391 B
C

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <gst/gst.h>
#ifdef GST_PLUGIN_STATIC
#error ack
#endif
static gboolean
plugin_init (GstPlugin *plugin)
{
return TRUE;
}
GST_PLUGIN_DEFINE (
GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"testplugin2",
"another testplugin for testing",
plugin_init,
VERSION,
GST_LICENSE,
GST_COPYRIGHT,
GST_PACKAGE,
GST_ORIGIN
);