X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Frtp%2Fgstrtp.c;h=d317156c169485d3d6b04d64a11493deb2b48f98;hb=692206d3a743e851286bf5c272e33f535d13174f;hp=7de6da361adecca322ce1caec073981e177b1a33;hpb=7ef71579863a2c052a87f112e662075ee026d6c6;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index 7de6da3..d317156 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -13,14 +13,16 @@ * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include "config.h" #endif +#include + #include "gstrtpac3depay.h" #include "gstrtpac3pay.h" #include "gstrtpbvdepay.h" @@ -78,6 +80,8 @@ #include "gstrtpmp4gpay.h" #include "gstrtpqcelpdepay.h" #include "gstrtpqdmdepay.h" +#include "gstrtpsbcdepay.h" +#include "gstrtpsbcpay.h" #include "gstrtpsirenpay.h" #include "gstrtpsirendepay.h" #include "gstrtpspeexpay.h" @@ -87,12 +91,16 @@ #include "gstrtptheorapay.h" #include "gstrtpvorbisdepay.h" #include "gstrtpvorbispay.h" +#include "gstrtpvp8depay.h" +#include "gstrtpvp8pay.h" #include "gstrtpvrawdepay.h" #include "gstrtpvrawpay.h" static gboolean plugin_init (GstPlugin * plugin) { + gst_tag_image_type_get_type (); + if (!gst_rtp_ac3_depay_plugin_init (plugin)) return FALSE; @@ -264,6 +272,12 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_qdm2_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_sbc_depay_plugin_init (plugin)) + return FALSE; + + if (!gst_rtp_sbc_pay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_siren_pay_plugin_init (plugin)) return FALSE; @@ -291,6 +305,12 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_vorbis_pay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_vp8_depay_plugin_init (plugin)) + return FALSE; + + if (!gst_rtp_vp8_pay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_vraw_depay_plugin_init (plugin)) return FALSE; @@ -302,6 +322,6 @@ plugin_init (GstPlugin * plugin) GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, GST_VERSION_MINOR, - "rtp", + rtp, "Real-time protocol plugins", plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN);