3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Library General Public
5 * License as published by the Free Software Foundation; either
6 * version 2 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Library General Public License for more details.
13 * You should have received a copy of the GNU Library General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
23 #include <gst/rtp/gstrtpbuffer.h>
27 #include "gstrtpg729depay.h"
29 GST_DEBUG_CATEGORY_STATIC (rtpg729depay_debug);
30 #define GST_CAT_DEFAULT (rtpg729depay_debug)
38 /* elementfactory information */
39 static const GstElementDetails gst_rtp_g729depay_details =
40 GST_ELEMENT_DETAILS ("RTP G.729 depayloader",
41 "Codec/Depayloader/Network",
42 "Extracts G.729 audio from RTP packets (RFC 3551)",
43 "Laurent Glayal <spglegle@yahoo.fr>");
56 /* input is an RTP packet
59 static GstStaticPadTemplate gst_rtp_g729_depay_sink_template =
60 GST_STATIC_PAD_TEMPLATE ("sink",
63 GST_STATIC_CAPS ("application/x-rtp, "
64 "media = (string) \"audio\", "
65 "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
66 "clock-rate = (int) 8000, "
67 "encoding-name = (string) \"G729\"; "
69 "media = (string) \"audio\", "
70 "payload = (int) " GST_RTP_PAYLOAD_G729_STRING ", "
71 "clock-rate = (int) 8000")
74 static GstStaticPadTemplate gst_rtp_g729_depay_src_template =
75 GST_STATIC_PAD_TEMPLATE ("src",
78 GST_STATIC_CAPS ("audio/G729, " "channels = (int) 1," "rate = (int) 8000")
81 static gboolean gst_rtp_g729_depay_setcaps (GstBaseRTPDepayload * depayload,
83 static GstBuffer *gst_rtp_g729_depay_process (GstBaseRTPDepayload * depayload,
86 GST_BOILERPLATE (GstRtpG729Depay, gst_rtp_g729_depay, GstBaseRTPDepayload,
87 GST_TYPE_BASE_RTP_DEPAYLOAD);
90 gst_rtp_g729_depay_base_init (gpointer klass)
92 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
94 gst_element_class_add_pad_template (element_class,
95 gst_static_pad_template_get (&gst_rtp_g729_depay_src_template));
96 gst_element_class_add_pad_template (element_class,
97 gst_static_pad_template_get (&gst_rtp_g729_depay_sink_template));
99 gst_element_class_set_details (element_class, &gst_rtp_g729depay_details);
101 GST_DEBUG_CATEGORY_INIT (rtpg729depay_debug, "rtpg729depay", 0,
102 "G.729 RTP Depayloader");
106 gst_rtp_g729_depay_class_init (GstRtpG729DepayClass * klass)
108 GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
110 gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
112 gstbasertpdepayload_class->process = gst_rtp_g729_depay_process;
113 gstbasertpdepayload_class->set_caps = gst_rtp_g729_depay_setcaps;
117 gst_rtp_g729_depay_init (GstRtpG729Depay * rtpg729depay,
118 GstRtpG729DepayClass * klass)
120 GstBaseRTPDepayload *depayload;
122 depayload = GST_BASE_RTP_DEPAYLOAD (rtpg729depay);
124 gst_pad_use_fixed_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload));
128 gst_rtp_g729_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
130 GstStructure *structure;
132 GstRtpG729Depay *rtpg729depay;
134 gint clock_rate, channels;
137 rtpg729depay = GST_RTP_G729_DEPAY (depayload);
139 structure = gst_caps_get_structure (caps, 0);
141 if (!(params = gst_structure_get_string (structure, "encoding-params")))
144 channels = atoi (params);
147 if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
153 if (clock_rate != 8000)
154 goto wrong_clock_rate;
156 depayload->clock_rate = clock_rate;
158 srccaps = gst_caps_new_simple ("audio/G729",
159 "channels", G_TYPE_INT, channels, "rate", G_TYPE_INT, clock_rate, NULL);
160 ret = gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
161 gst_caps_unref (srccaps);
168 GST_DEBUG_OBJECT (rtpg729depay, "expected 1 channel, got %d", channels);
173 GST_DEBUG_OBJECT (rtpg729depay, "expected 8000 clock-rate, got %d",
181 gst_rtp_g729_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
183 GstRtpG729Depay *rtpg729depay;
184 GstBuffer *outbuf = NULL;
188 rtpg729depay = GST_RTP_G729_DEPAY (depayload);
190 payload_len = gst_rtp_buffer_get_payload_len (buf);
192 /* At least 2 bytes (CNG from G729 Annex B) */
193 if (payload_len < 2) {
194 GST_ELEMENT_WARNING (rtpg729depay, STREAM, DECODE,
195 (NULL), ("G729 RTP payload too small (%d)", payload_len));
199 GST_LOG_OBJECT (rtpg729depay, "payload len %d", payload_len);
201 if ((payload_len % 10) == 2) {
202 GST_LOG_OBJECT (rtpg729depay, "G729 payload contains CNG frame");
205 outbuf = gst_rtp_buffer_get_payload_buffer (buf);
206 marker = gst_rtp_buffer_get_marker (buf);
209 /* marker bit starts talkspurt */
210 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
213 GST_LOG_OBJECT (depayload, "pushing buffer of size %d",
214 GST_BUFFER_SIZE (outbuf));
227 gst_rtp_g729_depay_plugin_init (GstPlugin * plugin)
229 return gst_element_register (plugin, "rtpg729depay",
230 GST_RANK_MARGINAL, GST_TYPE_RTP_G729_DEPAY);