From c0cdcae569856ad5faa847294631c9219bd07799 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Wed, 28 Mar 2007 18:40:12 +0000 Subject: gst/rtp/: Added MP4A-LATM depayloader. Fixes #417792. Original commit message from CVS: Based on patch by: Stefan Kost * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmp4adepay.c: (gst_rtp_mp4a_depay_base_init), (gst_rtp_mp4a_depay_class_init), (gst_rtp_mp4a_depay_init), (gst_rtp_mp4a_depay_finalize), (gst_rtp_mp4a_depay_setcaps), (gst_rtp_mp4a_depay_process), (gst_rtp_mp4a_depay_set_property), (gst_rtp_mp4a_depay_get_property), (gst_rtp_mp4a_depay_change_state), (gst_rtp_mp4a_depay_plugin_init): * gst/rtp/gstrtpmp4adepay.h: Added MP4A-LATM depayloader. Fixes #417792. * gst/rtp/gstrtpmp4vdepay.c: (gst_rtp_mp4v_depay_setcaps), (gst_rtp_mp4v_depay_process): Fixup depayloader, setting codec_data, using more efficient adaptor and rtpbuffer handling. * gst/rtsp/URLS: Add url to test above. --- 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 c4d2b174..a4d12c7d 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -47,6 +47,7 @@ #include "gstrtpmp2tpay.h" #include "gstrtpmp4vdepay.h" #include "gstrtpmp4vpay.h" +#include "gstrtpmp4adepay.h" #include "gstrtpmp4gdepay.h" #include "gstrtpmp4gpay.h" #include "gstrtpspeexpay.h" @@ -138,6 +139,9 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_mp4v_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_mp4a_depay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_mp4g_depay_plugin_init (plugin)) return FALSE; -- cgit