summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 2dcc2269..5025a05b 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -66,6 +66,8 @@
#include "gstrtptheorapay.h"
#include "gstrtpvorbisdepay.h"
#include "gstrtpvorbispay.h"
+#include "gstrtpvrawdepay.h"
+#include "gstrtpvrawpay.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -205,6 +207,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_vorbis_pay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_vraw_depay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_vraw_pay_plugin_init (plugin))
+ return FALSE;
+
return TRUE;
}