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-mulawenc
22 * This element encode mulaw audio. Mulaw coding is also known as G.711.
29 #include "mulaw-encode.h"
30 #include "mulaw-conversion.h"
32 extern GstStaticPadTemplate mulaw_enc_src_factory;
33 extern GstStaticPadTemplate mulaw_enc_sink_factory;
35 /* Stereo signals and args */
47 static gboolean gst_mulawenc_event (GstPad * pad, GstObject * parent,
49 static GstFlowReturn gst_mulawenc_chain (GstPad * pad, GstObject * parent,
52 #define gst_mulawenc_parent_class parent_class
53 G_DEFINE_TYPE (GstMuLawEnc, gst_mulawenc, GST_TYPE_ELEMENT);
55 /*static guint gst_stereo_signals[LAST_SIGNAL] = { 0 }; */
58 mulawenc_getcaps (GstPad * pad, GstCaps * filter)
60 GstMuLawEnc *mulawenc;
62 GstCaps *othercaps, *result;
67 mulawenc = GST_MULAWENC (GST_PAD_PARENT (pad));
69 /* figure out the name of the caps we are going to return */
70 if (pad == mulawenc->srcpad) {
71 name = "audio/x-mulaw";
72 otherpad = mulawenc->sinkpad;
74 name = "audio/x-raw-int";
75 otherpad = mulawenc->srcpad;
77 /* get caps from the peer, this can return NULL when there is no peer */
78 othercaps = gst_pad_peer_query_caps (otherpad, filter);
80 /* get the template caps to make sure we return something acceptable */
81 templ = gst_pad_get_pad_template_caps (pad);
84 /* there was a peer */
85 othercaps = gst_caps_make_writable (othercaps);
87 /* go through the caps and remove the fields we don't want */
88 for (i = 0; i < gst_caps_get_size (othercaps); i++) {
89 GstStructure *structure;
91 structure = gst_caps_get_structure (othercaps, i);
94 gst_structure_set_name (structure, name);
96 if (pad == mulawenc->srcpad) {
97 /* remove the fields we don't want */
98 gst_structure_remove_fields (structure, "width", "depth", "endianness",
101 /* add fixed fields */
102 gst_structure_set (structure, "width", G_TYPE_INT, 16,
103 "depth", G_TYPE_INT, 16,
104 "endianness", G_TYPE_INT, G_BYTE_ORDER,
105 "signed", G_TYPE_BOOLEAN, TRUE, NULL);
108 /* filter against the allowed caps of the pad to return our result */
109 result = gst_caps_intersect (othercaps, templ);
110 gst_caps_unref (othercaps);
112 /* there was no peer, return the template caps */
113 result = gst_caps_copy (templ);
119 gst_mulawenc_query (GstPad * pad, GstObject * parent, GstQuery * query)
123 switch (GST_QUERY_TYPE (query)) {
126 GstCaps *filter, *caps;
128 gst_query_parse_caps (query, &filter);
129 caps = mulawenc_getcaps (pad, filter);
130 gst_query_set_caps_result (query, caps);
131 gst_caps_unref (caps);
137 res = gst_pad_query_default (pad, parent, query);
145 mulawenc_setcaps (GstMuLawEnc * mulawenc, GstCaps * caps)
147 GstStructure *structure;
150 structure = gst_caps_get_structure (caps, 0);
151 gst_structure_get_int (structure, "channels", &mulawenc->channels);
152 gst_structure_get_int (structure, "rate", &mulawenc->rate);
154 base_caps = gst_caps_copy (gst_pad_get_pad_template_caps (mulawenc->srcpad));
156 structure = gst_caps_get_structure (base_caps, 0);
157 gst_structure_set (structure, "rate", G_TYPE_INT, mulawenc->rate, NULL);
158 gst_structure_set (structure, "channels", G_TYPE_INT, mulawenc->channels,
161 gst_pad_set_caps (mulawenc->srcpad, base_caps);
163 gst_caps_unref (base_caps);
169 gst_mulawenc_class_init (GstMuLawEncClass * klass)
171 GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
173 gst_element_class_add_pad_template (element_class,
174 gst_static_pad_template_get (&mulaw_enc_src_factory));
175 gst_element_class_add_pad_template (element_class,
176 gst_static_pad_template_get (&mulaw_enc_sink_factory));
178 gst_element_class_set_details_simple (element_class, "Mu Law audio encoder",
179 "Codec/Encoder/Audio",
180 "Convert 16bit PCM to 8bit mu law",
181 "Zaheer Abbas Merali <zaheerabbas at merali dot org>");
185 gst_mulawenc_init (GstMuLawEnc * mulawenc)
188 gst_pad_new_from_static_template (&mulaw_enc_sink_factory, "sink");
189 gst_pad_set_query_function (mulawenc->sinkpad, gst_mulawenc_query);
190 gst_pad_set_event_function (mulawenc->sinkpad, gst_mulawenc_event);
191 gst_pad_set_chain_function (mulawenc->sinkpad, gst_mulawenc_chain);
192 gst_element_add_pad (GST_ELEMENT (mulawenc), mulawenc->sinkpad);
195 gst_pad_new_from_static_template (&mulaw_enc_src_factory, "src");
196 gst_pad_set_query_function (mulawenc->srcpad, gst_mulawenc_query);
197 gst_element_add_pad (GST_ELEMENT (mulawenc), mulawenc->srcpad);
200 mulawenc->channels = 0;
205 gst_mulawenc_event (GstPad * pad, GstObject * parent, GstEvent * event)
207 GstMuLawEnc *mulawenc;
210 mulawenc = GST_MULAWENC (parent);
212 switch (GST_EVENT_TYPE (event)) {
217 gst_event_parse_caps (event, &caps);
218 mulawenc_setcaps (mulawenc, caps);
219 gst_event_unref (event);
225 res = gst_pad_event_default (pad, parent, event);
232 gst_mulawenc_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
234 GstMuLawEnc *mulawenc;
241 GstClockTime timestamp, duration;
243 mulawenc = GST_MULAWENC (parent);
245 if (!mulawenc->rate || !mulawenc->channels)
248 linear_data = gst_buffer_map (buffer, &linear_size, NULL, GST_MAP_READ);
250 mulaw_size = linear_size / 2;
252 timestamp = GST_BUFFER_TIMESTAMP (buffer);
253 duration = GST_BUFFER_DURATION (buffer);
255 outbuf = gst_buffer_new_allocate (NULL, mulaw_size, 0);
257 if (duration == -1) {
258 duration = gst_util_uint64_scale_int (mulaw_size,
259 GST_SECOND, mulawenc->rate * mulawenc->channels);
262 mulaw_data = gst_buffer_map (outbuf, NULL, NULL, GST_MAP_WRITE);
264 /* copy discont flag */
265 if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
266 GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
268 GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
269 GST_BUFFER_DURATION (outbuf) = duration;
271 mulaw_encode (linear_data, mulaw_data, mulaw_size);
273 gst_buffer_unmap (outbuf, mulaw_data, -1);
274 gst_buffer_unmap (buffer, linear_data, -1);
275 gst_buffer_unref (buffer);
277 ret = gst_pad_push (mulawenc->srcpad, outbuf);
285 GST_DEBUG_OBJECT (mulawenc, "no format negotiated");
286 ret = GST_FLOW_NOT_NEGOTIATED;
287 gst_buffer_unref (buffer);