From f9d2e49e40269dda8dc1fa7db6b7037a188e4a00 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 10 Feb 2006 16:40:58 +0000 Subject: gst/rtp/README: Say something about case-sensitivity of caps vs mime-attributes. Original commit message from CVS: * gst/rtp/README: Say something about case-sensitivity of caps vs mime-attributes. * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpamrpay.c: (gst_rtp_amr_pay_class_init), (gst_rtp_amr_pay_handle_buffer): * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_get_type), (gst_rtp_mp4g_pay_base_init), (gst_rtp_mp4g_pay_class_init), (gst_rtp_mp4g_pay_init), (gst_rtp_mp4g_pay_finalize), (gst_rtp_mp4g_pay_new_caps), (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush), (gst_rtp_mp4g_pay_handle_buffer), (gst_rtp_mp4g_pay_set_property), (gst_rtp_mp4g_pay_get_property), (gst_rtp_mp4g_pay_plugin_init): * gst/rtp/gstrtpmp4gpay.h: Added beginnings of mpeg4-generic payloader (RFC 3640) --- 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 0c223401..b412e787 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -35,6 +35,7 @@ #include "gstrtph263pay.h" #include "gstasteriskh263.h" #include "gstrtpmp4vpay.h" +#include "gstrtpmp4gpay.h" #include "gstrtpmp4vdepay.h" #include "gstrtpspeexpay.h" #include "gstrtpspeexdepay.h" @@ -87,6 +88,9 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_mp4v_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_mp4g_pay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_speex_pay_plugin_init (plugin)) return FALSE; -- cgit