2 * Copyright (C) <2005> Edgard Lima <edgard.lima@indt.org.br>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
26 #include <gst/rtp/gstrtpbuffer.h>
28 #include "gstrtpspeexpay.h"
30 GST_DEBUG_CATEGORY_STATIC (rtpspeexpay_debug);
31 #define GST_CAT_DEFAULT (rtpspeexpay_debug)
33 static GstStaticPadTemplate gst_rtp_speex_pay_sink_template =
34 GST_STATIC_PAD_TEMPLATE ("sink",
37 GST_STATIC_CAPS ("audio/x-speex, "
38 "rate = (int) [ 6000, 48000 ], " "channels = (int) 1")
41 static GstStaticPadTemplate gst_rtp_speex_pay_src_template =
42 GST_STATIC_PAD_TEMPLATE ("src",
45 GST_STATIC_CAPS ("application/x-rtp, "
46 "media = (string) \"audio\", "
47 "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
48 "clock-rate = (int) [ 6000, 48000 ], "
49 "encoding-name = (string) \"SPEEX\", "
50 "encoding-params = (string) \"1\"")
53 static GstStateChangeReturn gst_rtp_speex_pay_change_state (GstElement *
54 element, GstStateChange transition);
56 static gboolean gst_rtp_speex_pay_setcaps (GstRTPBasePayload * payload,
58 static GstCaps *gst_rtp_speex_pay_getcaps (GstRTPBasePayload * payload,
59 GstPad * pad, GstCaps * filter);
60 static GstFlowReturn gst_rtp_speex_pay_handle_buffer (GstRTPBasePayload *
61 payload, GstBuffer * buffer);
63 #define gst_rtp_speex_pay_parent_class parent_class
64 G_DEFINE_TYPE (GstRtpSPEEXPay, gst_rtp_speex_pay, GST_TYPE_RTP_BASE_PAYLOAD);
67 gst_rtp_speex_pay_class_init (GstRtpSPEEXPayClass * klass)
69 GstElementClass *gstelement_class;
70 GstRTPBasePayloadClass *gstrtpbasepayload_class;
72 gstelement_class = (GstElementClass *) klass;
73 gstrtpbasepayload_class = (GstRTPBasePayloadClass *) klass;
75 gstelement_class->change_state = gst_rtp_speex_pay_change_state;
77 gstrtpbasepayload_class->set_caps = gst_rtp_speex_pay_setcaps;
78 gstrtpbasepayload_class->get_caps = gst_rtp_speex_pay_getcaps;
79 gstrtpbasepayload_class->handle_buffer = gst_rtp_speex_pay_handle_buffer;
81 gst_element_class_add_pad_template (gstelement_class,
82 gst_static_pad_template_get (&gst_rtp_speex_pay_sink_template));
83 gst_element_class_add_pad_template (gstelement_class,
84 gst_static_pad_template_get (&gst_rtp_speex_pay_src_template));
85 gst_element_class_set_details_simple (gstelement_class, "RTP Speex payloader",
86 "Codec/Payloader/Network/RTP",
87 "Payload-encodes Speex audio into a RTP packet",
88 "Edgard Lima <edgard.lima@indt.org.br>");
90 GST_DEBUG_CATEGORY_INIT (rtpspeexpay_debug, "rtpspeexpay", 0,
91 "Speex RTP Payloader");
95 gst_rtp_speex_pay_init (GstRtpSPEEXPay * rtpspeexpay)
97 GST_RTP_BASE_PAYLOAD (rtpspeexpay)->clock_rate = 8000;
98 GST_RTP_BASE_PAYLOAD_PT (rtpspeexpay) = 110; /* Create String */
102 gst_rtp_speex_pay_setcaps (GstRTPBasePayload * payload, GstCaps * caps)
104 /* don't configure yet, we wait for the ident packet */
110 gst_rtp_speex_pay_getcaps (GstRTPBasePayload * payload, GstPad * pad,
113 GstCaps *otherpadcaps;
116 otherpadcaps = gst_pad_get_allowed_caps (payload->srcpad);
117 caps = gst_pad_get_pad_template_caps (pad);
120 if (!gst_caps_is_empty (otherpadcaps)) {
125 ps = gst_caps_get_structure (otherpadcaps, 0);
126 caps = gst_caps_make_writable (caps);
127 s = gst_caps_get_structure (caps, 0);
129 if (gst_structure_get_int (ps, "clock-rate", &clock_rate)) {
130 gst_structure_fixate_field_nearest_int (s, "rate", clock_rate);
133 gst_caps_unref (otherpadcaps);
137 GstCaps *tcaps = caps;
139 caps = gst_caps_intersect_full (filter, tcaps, GST_CAPS_INTERSECT_FIRST);
140 gst_caps_unref (tcaps);
147 gst_rtp_speex_pay_parse_ident (GstRtpSPEEXPay * rtpspeexpay,
148 const guint8 * data, guint size)
150 guint32 version, header_size, rate, mode, nb_channels;
151 GstRTPBasePayload *payload;
155 /* we need the header string (8), the version string (20), the version
156 * and the header length. */
160 if (!g_str_has_prefix ((const gchar *) data, "Speex "))
163 /* skip header and version string */
166 version = GST_READ_UINT32_LE (data);
172 header_size = GST_READ_UINT32_LE (data);
173 if (header_size < 80)
174 goto header_too_small;
176 if (size < header_size)
177 goto payload_too_small;
180 rate = GST_READ_UINT32_LE (data);
182 mode = GST_READ_UINT32_LE (data);
184 nb_channels = GST_READ_UINT32_LE (data);
186 GST_DEBUG_OBJECT (rtpspeexpay, "rate %d, mode %d, nb_channels %d",
187 rate, mode, nb_channels);
189 payload = GST_RTP_BASE_PAYLOAD (rtpspeexpay);
191 gst_rtp_base_payload_set_options (payload, "audio", FALSE, "SPEEX", rate);
192 cstr = g_strdup_printf ("%d", nb_channels);
193 res = gst_rtp_base_payload_set_outcaps (payload, "encoding-params",
194 G_TYPE_STRING, cstr, NULL);
202 GST_DEBUG_OBJECT (rtpspeexpay,
203 "ident packet too small, need at least 32 bytes");
208 GST_DEBUG_OBJECT (rtpspeexpay,
209 "ident packet does not start with \"Speex \"");
214 GST_DEBUG_OBJECT (rtpspeexpay, "can only handle version 1, have version %d",
220 GST_DEBUG_OBJECT (rtpspeexpay,
221 "header size too small, need at least 80 bytes, " "got only %d",
227 GST_DEBUG_OBJECT (rtpspeexpay,
228 "payload too small, need at least %d bytes, got only %d", header_size,
235 gst_rtp_speex_pay_handle_buffer (GstRTPBasePayload * basepayload,
238 GstRtpSPEEXPay *rtpspeexpay;
243 GstClockTime timestamp, duration;
245 GstRTPBuffer rtp = { NULL };
247 rtpspeexpay = GST_RTP_SPEEX_PAY (basepayload);
249 gst_buffer_map (buffer, &map, GST_MAP_READ);
251 switch (rtpspeexpay->packet) {
253 /* ident packet. We need to parse the headers to construct the RTP
255 if (!gst_rtp_speex_pay_parse_ident (rtpspeexpay, map.data, map.size))
261 /* comment packet, we ignore it */
265 /* other packets go in the payload */
269 if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_GAP)) {
274 timestamp = GST_BUFFER_TIMESTAMP (buffer);
275 duration = GST_BUFFER_DURATION (buffer);
277 /* FIXME, only one SPEEX frame per RTP packet for now */
278 payload_len = map.size;
280 outbuf = gst_rtp_buffer_new_allocate (payload_len, 0, 0);
281 /* FIXME, assert for now */
282 g_assert (payload_len <= GST_RTP_BASE_PAYLOAD_MTU (rtpspeexpay));
284 /* copy timestamp and duration */
285 GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
286 GST_BUFFER_DURATION (outbuf) = duration;
288 gst_rtp_buffer_map (outbuf, GST_MAP_WRITE, &rtp);
290 payload = gst_rtp_buffer_get_payload (&rtp);
292 /* copy data in payload */
293 memcpy (&payload[0], map.data, map.size);
295 gst_rtp_buffer_unmap (&rtp);
297 ret = gst_rtp_base_payload_push (basepayload, outbuf);
300 gst_buffer_unmap (buffer, &map);
301 gst_buffer_unref (buffer);
303 rtpspeexpay->packet++;
310 GST_ELEMENT_ERROR (rtpspeexpay, STREAM, DECODE, (NULL),
311 ("Error parsing first identification packet."));
312 gst_buffer_unmap (buffer, &map);
313 gst_buffer_unref (buffer);
314 return GST_FLOW_ERROR;
318 static GstStateChangeReturn
319 gst_rtp_speex_pay_change_state (GstElement * element, GstStateChange transition)
321 GstRtpSPEEXPay *rtpspeexpay;
322 GstStateChangeReturn ret;
324 rtpspeexpay = GST_RTP_SPEEX_PAY (element);
326 switch (transition) {
327 case GST_STATE_CHANGE_NULL_TO_READY:
329 case GST_STATE_CHANGE_READY_TO_PAUSED:
330 rtpspeexpay->packet = 0;
336 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
338 switch (transition) {
339 case GST_STATE_CHANGE_READY_TO_NULL:
348 gst_rtp_speex_pay_plugin_init (GstPlugin * plugin)
350 return gst_element_register (plugin, "rtpspeexpay",
351 GST_RANK_SECONDARY, GST_TYPE_RTP_SPEEX_PAY);