From b04309946b6b835888bd1f54a48dda8542c39e16 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 18 Aug 2006 16:52:21 +0000 Subject: gst/rtp/: Added experimental SVQ3 depayloader. Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init), (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init), (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps), (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property), (gst_rtp_sv3v_depay_get_property), (gst_rtp_sv3v_depay_change_state), (gst_rtp_sv3v_depay_plugin_init): * gst/rtp/gstrtpsv3vdepay.h: Added experimental SVQ3 depayloader. --- gst/rtp/gstrtp.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gst/rtp/gstrtp.c') diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index d1eb210e..e7949b8e 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -44,6 +44,7 @@ #include "gstrtpmp4gpay.h" #include "gstrtpspeexpay.h" #include "gstrtpspeexdepay.h" +#include "gstrtpsv3vdepay.h" static gboolean plugin_init (GstPlugin * plugin) @@ -117,6 +118,9 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_speex_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_sv3v_depay_plugin_init (plugin)) + return FALSE; + return TRUE; } -- cgit