source: trunk/third/gstreamer/testsuite/plugin/testplugin2.c @ 21005

Revision 21005, 326 bytes checked in by ghudson, 20 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r21004, which included commits to RCS files with non-trunk default branches.
Line 
1
2#ifdef HAVE_CONFIG_H
3#  include "config.h"
4#endif
5
6#include <gst/gst.h>
7
8static gboolean
9plugin_init (GstPlugin * plugin)
10{
11  return TRUE;
12}
13
14GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
15    GST_VERSION_MINOR,
16    "testplugin2",
17    "another testplugin for testing",
18    plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN);
Note: See TracBrowser for help on using the repository browser.