3 * Copyright (C) <2010> Wim Taymans <wim.taymans@gmail.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
25 #include <gst/rtp/gstrtpbuffer.h>
29 #include "gstrtpg723depay.h"
31 GST_DEBUG_CATEGORY_STATIC (rtpg723depay_debug);
32 #define GST_CAT_DEFAULT (rtpg723depay_debug)
51 /* input is an RTP packet
54 static GstStaticPadTemplate gst_rtp_g723_depay_sink_template =
55 GST_STATIC_PAD_TEMPLATE ("sink",
58 GST_STATIC_CAPS ("application/x-rtp, "
59 "media = (string) \"audio\", "
60 "clock-rate = (int) 8000, "
61 "encoding-name = (string) \"G723\"; "
63 "media = (string) \"audio\", "
64 "payload = (int) " GST_RTP_PAYLOAD_G723_STRING ", "
65 "clock-rate = (int) 8000")
68 static GstStaticPadTemplate gst_rtp_g723_depay_src_template =
69 GST_STATIC_PAD_TEMPLATE ("src",
72 GST_STATIC_CAPS ("audio/G723, " "channels = (int) 1," "rate = (int) 8000")
75 static gboolean gst_rtp_g723_depay_setcaps (GstRTPBaseDepayload * depayload,
77 static GstBuffer *gst_rtp_g723_depay_process (GstRTPBaseDepayload * depayload,
80 #define gst_rtp_g723_depay_parent_class parent_class
81 G_DEFINE_TYPE (GstRtpG723Depay, gst_rtp_g723_depay,
82 GST_TYPE_RTP_BASE_DEPAYLOAD);
85 gst_rtp_g723_depay_class_init (GstRtpG723DepayClass * klass)
87 GstElementClass *gstelement_class;
88 GstRTPBaseDepayloadClass *gstrtpbasedepayload_class;
90 GST_DEBUG_CATEGORY_INIT (rtpg723depay_debug, "rtpg723depay", 0,
91 "G.723 RTP Depayloader");
93 gstelement_class = (GstElementClass *) klass;
94 gstrtpbasedepayload_class = (GstRTPBaseDepayloadClass *) klass;
96 gst_element_class_add_static_pad_template (gstelement_class,
97 &gst_rtp_g723_depay_src_template);
98 gst_element_class_add_static_pad_template (gstelement_class,
99 &gst_rtp_g723_depay_sink_template);
101 gst_element_class_set_static_metadata (gstelement_class,
102 "RTP G.723 depayloader", "Codec/Depayloader/Network/RTP",
103 "Extracts G.723 audio from RTP packets (RFC 3551)",
104 "Wim Taymans <wim.taymans@gmail.com>");
106 gstrtpbasedepayload_class->process_rtp_packet = gst_rtp_g723_depay_process;
107 gstrtpbasedepayload_class->set_caps = gst_rtp_g723_depay_setcaps;
111 gst_rtp_g723_depay_init (GstRtpG723Depay * rtpg723depay)
113 GstRTPBaseDepayload *depayload;
115 depayload = GST_RTP_BASE_DEPAYLOAD (rtpg723depay);
117 gst_pad_use_fixed_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload));
121 gst_rtp_g723_depay_setcaps (GstRTPBaseDepayload * depayload, GstCaps * caps)
123 GstStructure *structure;
125 GstRtpG723Depay *rtpg723depay;
127 gint clock_rate, channels;
130 rtpg723depay = GST_RTP_G723_DEPAY (depayload);
132 structure = gst_caps_get_structure (caps, 0);
134 if (!(params = gst_structure_get_string (structure, "encoding-params")))
137 channels = atoi (params);
140 if (!gst_structure_get_int (structure, "clock-rate", &clock_rate))
146 if (clock_rate != 8000)
147 goto wrong_clock_rate;
149 depayload->clock_rate = clock_rate;
151 srccaps = gst_caps_new_simple ("audio/G723",
152 "channels", G_TYPE_INT, channels, "rate", G_TYPE_INT, clock_rate, NULL);
153 ret = gst_pad_set_caps (GST_RTP_BASE_DEPAYLOAD_SRCPAD (depayload), srccaps);
154 gst_caps_unref (srccaps);
161 GST_DEBUG_OBJECT (rtpg723depay, "expected 1 channel, got %d", channels);
166 GST_DEBUG_OBJECT (rtpg723depay, "expected 8000 clock-rate, got %d",
174 gst_rtp_g723_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
176 GstRtpG723Depay *rtpg723depay;
177 GstBuffer *outbuf = NULL;
181 rtpg723depay = GST_RTP_G723_DEPAY (depayload);
183 payload_len = gst_rtp_buffer_get_payload_len (rtp);
185 /* At least 4 bytes */
189 GST_LOG_OBJECT (rtpg723depay, "payload len %d", payload_len);
191 outbuf = gst_rtp_buffer_get_payload_buffer (rtp);
192 marker = gst_rtp_buffer_get_marker (rtp);
195 /* marker bit starts talkspurt */
196 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_RESYNC);
199 GST_LOG_OBJECT (depayload, "pushing buffer of size %" G_GSIZE_FORMAT,
200 gst_buffer_get_size (outbuf));
207 GST_ELEMENT_WARNING (rtpg723depay, STREAM, DECODE,
208 (NULL), ("G723 RTP payload too small (%d)", payload_len));
219 gst_rtp_g723_depay_plugin_init (GstPlugin * plugin)
221 return gst_element_register (plugin, "rtpg723depay",
222 GST_RANK_SECONDARY, GST_TYPE_RTP_G723_DEPAY);