Merge CAPS branch
[platform/upstream/gstreamer.git] / testsuite / plugin / testplugin_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 (
15   GST_VERSION_MAJOR,
16   GST_VERSION_MINOR,
17   "testplugin",
18   "a plugin for testing",
19   plugin_init,
20   VERSION,
21   GST_LICENSE,
22   GST_COPYRIGHT,
23   GST_PACKAGE,
24   GST_ORIGIN
25 );