154c2768ee953d1b2213c1ed399fbc4c9e06bc30
[platform/upstream/gstreamer.git] / tests / old / testsuite / plugin / testplugin2_s.c
1
2 #ifdef HAVE_CONFIG_H
3 #  include "config.h"
4 #endif
5
6 #include <gst/gst.h>
7
8 static gboolean
9 plugin_init (GstPlugin *plugin)
10 {
11   return TRUE;
12 }
13
14 GST_PLUGIN_DEFINE_STATIC (
15   GST_VERSION_MAJOR,
16   GST_VERSION_MINOR,
17   "testplugin2",
18   "another testplugin for testing",
19   plugin_init,
20   VERSION,
21   GST_LICENSE,
22   GST_COPYRIGHT,
23   GST_PACKAGE,
24   GST_ORIGIN
25 );
26