Merging gst-plugins-bad
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-bad / gst / rtp / plugin.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #include "gstrtpsink.h"
6 #include "gstrtpsrc.h"
7
8
9 static gboolean
10 plugin_init (GstPlugin * plugin)
11 {
12   gboolean ret = FALSE;
13
14   ret |= GST_ELEMENT_REGISTER (rtpsrc, plugin);
15   ret |= GST_ELEMENT_REGISTER (rtpsink, plugin);
16
17   return ret;
18 }
19
20 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
21     GST_VERSION_MINOR,
22     rtpmanagerbad,
23     "GStreamer RTP Plugins",
24     plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);