rtpvp8: port some more to new memory API
[platform/upstream/gstreamer.git] / gst / rtp / gstrtpvp8.c
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4
5 #include "gstrtpvp8pay.h"
6 #include "gstrtpvp8depay.h"
7
8 static gboolean
9 plugin_init (GstPlugin *plugin)
10 {
11   gst_rtp_vp8_depay_plugin_init (plugin);
12   gst_rtp_vp8_pay_plugin_init (plugin);
13
14   return TRUE;
15 }
16
17 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
18     GST_VERSION_MINOR,
19     "rtpvp8",
20     "rtpvp8",
21     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)