2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
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.
20 * SECTION:element-mulawdec
22 * This element decodes mulaw audio. Mulaw coding is also known as G.711.
29 #include "mulaw-decode.h"
30 #include "mulaw-conversion.h"
32 extern GstStaticPadTemplate mulaw_dec_src_factory;
33 extern GstStaticPadTemplate mulaw_dec_sink_factory;
35 /* Stereo signals and args */
47 static void gst_mulawdec_class_init (GstMuLawDecClass * klass);
48 static void gst_mulawdec_base_init (GstMuLawDecClass * klass);
49 static void gst_mulawdec_init (GstMuLawDec * mulawdec);
50 static GstStateChangeReturn
51 gst_mulawdec_change_state (GstElement * element, GstStateChange transition);
53 static GstFlowReturn gst_mulawdec_chain (GstPad * pad, GstBuffer * buffer);
55 static GstElementClass *parent_class = NULL;
58 mulawdec_sink_setcaps (GstPad * pad, GstCaps * caps)
60 GstMuLawDec *mulawdec;
61 GstStructure *structure;
66 mulawdec = GST_MULAWDEC (GST_PAD_PARENT (pad));
68 structure = gst_caps_get_structure (caps, 0);
69 ret = gst_structure_get_int (structure, "rate", &rate);
70 ret = ret && gst_structure_get_int (structure, "channels", &channels);
74 outcaps = gst_caps_new_simple ("audio/x-raw-int",
75 "width", G_TYPE_INT, 16,
76 "depth", G_TYPE_INT, 16,
77 "endianness", G_TYPE_INT, G_BYTE_ORDER,
78 "signed", G_TYPE_BOOLEAN, TRUE,
79 "rate", G_TYPE_INT, rate, "channels", G_TYPE_INT, channels, NULL);
80 ret = gst_pad_set_caps (mulawdec->srcpad, outcaps);
81 gst_caps_unref (outcaps);
84 GST_DEBUG_OBJECT (mulawdec, "rate=%d, channels=%d", rate, channels);
85 mulawdec->rate = rate;
86 mulawdec->channels = channels;
92 mulawdec_getcaps (GstPad * pad)
94 GstMuLawDec *mulawdec;
96 GstCaps *othercaps, *result;
101 mulawdec = GST_MULAWDEC (GST_PAD_PARENT (pad));
103 /* figure out the name of the caps we are going to return */
104 if (pad == mulawdec->srcpad) {
105 name = "audio/x-raw-int";
106 otherpad = mulawdec->sinkpad;
108 name = "audio/x-mulaw";
109 otherpad = mulawdec->srcpad;
111 /* get caps from the peer, this can return NULL when there is no peer */
112 othercaps = gst_pad_peer_get_caps (otherpad);
114 /* get the template caps to make sure we return something acceptable */
115 templ = gst_pad_get_pad_template_caps (pad);
118 /* there was a peer */
119 othercaps = gst_caps_make_writable (othercaps);
121 /* go through the caps and remove the fields we don't want */
122 for (i = 0; i < gst_caps_get_size (othercaps); i++) {
123 GstStructure *structure;
125 structure = gst_caps_get_structure (othercaps, i);
127 /* adjust the name */
128 gst_structure_set_name (structure, name);
130 if (pad == mulawdec->sinkpad) {
131 /* remove the fields we don't want */
132 gst_structure_remove_fields (structure, "width", "depth", "endianness",
135 /* add fixed fields */
136 gst_structure_set (structure, "width", G_TYPE_INT, 16,
137 "depth", G_TYPE_INT, 16,
138 "endianness", G_TYPE_INT, G_BYTE_ORDER,
139 "signed", G_TYPE_BOOLEAN, TRUE, NULL);
142 /* filter against the allowed caps of the pad to return our result */
143 result = gst_caps_intersect (othercaps, templ);
144 gst_caps_unref (othercaps);
146 /* there was no peer, return the template caps */
147 result = gst_caps_copy (templ);
153 gst_mulawdec_get_type (void)
155 static GType mulawdec_type = 0;
157 if (!mulawdec_type) {
158 static const GTypeInfo mulawdec_info = {
159 sizeof (GstMuLawDecClass),
160 (GBaseInitFunc) gst_mulawdec_base_init,
162 (GClassInitFunc) gst_mulawdec_class_init,
165 sizeof (GstMuLawDec),
167 (GInstanceInitFunc) gst_mulawdec_init,
171 g_type_register_static (GST_TYPE_ELEMENT, "GstMuLawDec", &mulawdec_info,
174 return mulawdec_type;
178 gst_mulawdec_base_init (GstMuLawDecClass * klass)
180 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
182 gst_element_class_add_pad_template (element_class,
183 gst_static_pad_template_get (&mulaw_dec_src_factory));
184 gst_element_class_add_pad_template (element_class,
185 gst_static_pad_template_get (&mulaw_dec_sink_factory));
186 gst_element_class_set_details_simple (element_class, "Mu Law audio decoder",
187 "Codec/Decoder/Audio",
188 "Convert 8bit mu law to 16bit PCM",
189 "Zaheer Abbas Merali <zaheerabbas at merali dot org>");
193 gst_mulawdec_class_init (GstMuLawDecClass * klass)
195 GstElementClass *element_class = (GstElementClass *) klass;
197 parent_class = g_type_class_peek_parent (klass);
199 element_class->change_state = GST_DEBUG_FUNCPTR (gst_mulawdec_change_state);
203 gst_mulawdec_init (GstMuLawDec * mulawdec)
206 gst_pad_new_from_static_template (&mulaw_dec_sink_factory, "sink");
207 gst_pad_set_setcaps_function (mulawdec->sinkpad, mulawdec_sink_setcaps);
208 gst_pad_set_getcaps_function (mulawdec->sinkpad, mulawdec_getcaps);
209 gst_pad_set_chain_function (mulawdec->sinkpad, gst_mulawdec_chain);
210 gst_element_add_pad (GST_ELEMENT (mulawdec), mulawdec->sinkpad);
213 gst_pad_new_from_static_template (&mulaw_dec_src_factory, "src");
214 gst_pad_use_fixed_caps (mulawdec->srcpad);
215 gst_pad_set_getcaps_function (mulawdec->srcpad, mulawdec_getcaps);
216 gst_element_add_pad (GST_ELEMENT (mulawdec), mulawdec->srcpad);
220 gst_mulawdec_chain (GstPad * pad, GstBuffer * buffer)
222 GstMuLawDec *mulawdec;
229 mulawdec = GST_MULAWDEC (GST_PAD_PARENT (pad));
231 if (G_UNLIKELY (mulawdec->rate == 0))
234 mulaw_data = (guint8 *) GST_BUFFER_DATA (buffer);
235 mulaw_size = GST_BUFFER_SIZE (buffer);
238 gst_pad_alloc_buffer_and_set_caps (mulawdec->srcpad,
239 GST_BUFFER_OFFSET_NONE, mulaw_size * 2, GST_PAD_CAPS (mulawdec->srcpad),
241 if (ret != GST_FLOW_OK)
244 linear_data = (gint16 *) GST_BUFFER_DATA (outbuf);
246 /* copy discont flag */
247 if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
248 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
250 GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buffer);
251 if (GST_BUFFER_DURATION (outbuf) == GST_CLOCK_TIME_NONE)
252 GST_BUFFER_DURATION (outbuf) = gst_util_uint64_scale_int (GST_SECOND,
253 mulaw_size * 2, 2 * mulawdec->rate * mulawdec->channels);
255 GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buffer);
256 gst_buffer_set_caps (outbuf, GST_PAD_CAPS (mulawdec->srcpad));
258 mulaw_decode (mulaw_data, linear_data, mulaw_size);
260 gst_buffer_unref (buffer);
262 ret = gst_pad_push (mulawdec->srcpad, outbuf);
269 GST_WARNING_OBJECT (mulawdec, "no input format set: not-negotiated");
270 gst_buffer_unref (buffer);
271 return GST_FLOW_NOT_NEGOTIATED;
275 GST_DEBUG_OBJECT (mulawdec, "pad alloc failed, flow: %s",
276 gst_flow_get_name (ret));
277 gst_buffer_unref (buffer);
282 static GstStateChangeReturn
283 gst_mulawdec_change_state (GstElement * element, GstStateChange transition)
285 GstStateChangeReturn ret;
286 GstMuLawDec *dec = GST_MULAWDEC (element);
288 switch (transition) {
293 ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
294 if (ret != GST_STATE_CHANGE_SUCCESS)
297 switch (transition) {
298 case GST_STATE_CHANGE_PAUSED_TO_READY: