summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-09-22 12:08:14 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-09-22 12:08:14 +0000
commit8dbf0334202a4af22453ce50513bce26f51a3075 (patch)
tree97cd9d6169c2b948653a431206b7b692e3c99bef /gst/rtp/gstrtp.c
parent3b5584f8d128b57f7c6dcbde21df044511b9fd99 (diff)
gst/rtp/: Small cleanups.
Original commit message from CVS: * gst/rtp/gstrtpL16depay.c: (gst_rtp_L16depay_change_state): * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_class_init): Small cleanups. * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpvorbisdepay.c: (gst_rtp_vorbis_depay_base_init), (gst_rtp_vorbis_depay_class_init), (gst_rtp_vorbis_depay_init), (gst_rtp_vorbis_depay_finalize), (gst_rtp_vorbis_depay_setcaps), (gst_rtp_vorbis_depay_process), (gst_rtp_vorbis_depay_set_property), (gst_rtp_vorbis_depay_get_property), (gst_rtp_vorbis_depay_change_state), (gst_rtp_vorbis_depay_plugin_init): * gst/rtp/gstrtpvorbisdepay.h: * gst/rtp/gstrtpvorbispay.c: (gst_rtp_vorbis_pay_base_init), (gst_rtp_vorbis_pay_class_init), (gst_rtp_vorbis_pay_init), (gst_rtp_vorbis_pay_setcaps), (gst_rtp_vorbis_pay_init_packet), (gst_rtp_vorbis_pay_flush_packet), (gst_rtp_vorbis_pay_append_buffer), (gst_rtp_vorbis_pay_handle_buffer), (gst_rtp_vorbis_pay_plugin_init): * gst/rtp/gstrtpvorbispay.h: Add experimental vorbis pay and depayloaders.
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 5830d266..cf2130d5 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -46,6 +46,8 @@
#include "gstrtpspeexpay.h"
#include "gstrtpspeexdepay.h"
#include "gstrtpsv3vdepay.h"
+#include "gstrtpvorbisdepay.h"
+#include "gstrtpvorbispay.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -125,6 +127,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_sv3v_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_vorbis_depay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_vorbis_pay_plugin_init (plugin))
+ return FALSE;
+
return TRUE;
}