2007-09-25 17:18:34 +00:00
|
|
|
/* GStreamer A-Law to PCM conversion
|
|
|
|
* Copyright (C) 2000 by Abramo Bagnara <abramo@alsa-project.org>
|
2001-12-22 23:27:31 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2003-03-03 22:17:28 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2001-12-22 23:27:31 +00:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
2012-11-04 00:07:18 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2001-12-22 23:27:31 +00:00
|
|
|
*/
|
2009-01-28 10:29:42 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-alawdec
|
|
|
|
*
|
|
|
|
* This element decodes alaw audio. Alaw coding is also known as G.711.
|
|
|
|
*/
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2003-11-06 22:14:17 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2007-09-25 17:18:34 +00:00
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
#include "alaw-decode.h"
|
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
extern GstStaticPadTemplate alaw_dec_src_factory;
|
|
|
|
extern GstStaticPadTemplate alaw_dec_sink_factory;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2007-09-25 17:18:34 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (alaw_dec_debug);
|
|
|
|
#define GST_CAT_DEFAULT alaw_dec_debug
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2007-07-06 15:00:47 +00:00
|
|
|
static GstStateChangeReturn
|
2007-09-25 17:18:34 +00:00
|
|
|
gst_alaw_dec_change_state (GstElement * element, GstStateChange transition);
|
2011-08-29 17:11:25 +00:00
|
|
|
|
2011-11-17 14:02:55 +00:00
|
|
|
static gboolean gst_alaw_dec_event (GstPad * pad, GstObject * parent,
|
|
|
|
GstEvent * event);
|
|
|
|
static GstFlowReturn gst_alaw_dec_chain (GstPad * pad, GstObject * parent,
|
|
|
|
GstBuffer * buffer);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2011-08-29 17:11:25 +00:00
|
|
|
#define gst_alaw_dec_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstALawDec, gst_alaw_dec, GST_TYPE_ELEMENT);
|
2003-03-03 22:17:28 +00:00
|
|
|
|
2007-09-25 16:05:29 +00:00
|
|
|
/* some day we might have defines in gstconfig.h that tell us about the
|
|
|
|
* desired cpu/memory/binary size trade-offs */
|
|
|
|
#define GST_ALAW_DEC_USE_TABLE
|
|
|
|
|
|
|
|
#ifdef GST_ALAW_DEC_USE_TABLE
|
|
|
|
|
|
|
|
static const gint alaw_to_s16_table[256] = {
|
|
|
|
-5504, -5248, -6016, -5760, -4480, -4224, -4992, -4736,
|
|
|
|
-7552, -7296, -8064, -7808, -6528, -6272, -7040, -6784,
|
|
|
|
-2752, -2624, -3008, -2880, -2240, -2112, -2496, -2368,
|
|
|
|
-3776, -3648, -4032, -3904, -3264, -3136, -3520, -3392,
|
|
|
|
-22016, -20992, -24064, -23040, -17920, -16896, -19968, -18944,
|
|
|
|
-30208, -29184, -32256, -31232, -26112, -25088, -28160, -27136,
|
|
|
|
-11008, -10496, -12032, -11520, -8960, -8448, -9984, -9472,
|
|
|
|
-15104, -14592, -16128, -15616, -13056, -12544, -14080, -13568,
|
|
|
|
-344, -328, -376, -360, -280, -264, -312, -296,
|
|
|
|
-472, -456, -504, -488, -408, -392, -440, -424,
|
|
|
|
-88, -72, -120, -104, -24, -8, -56, -40,
|
|
|
|
-216, -200, -248, -232, -152, -136, -184, -168,
|
|
|
|
-1376, -1312, -1504, -1440, -1120, -1056, -1248, -1184,
|
|
|
|
-1888, -1824, -2016, -1952, -1632, -1568, -1760, -1696,
|
|
|
|
-688, -656, -752, -720, -560, -528, -624, -592,
|
|
|
|
-944, -912, -1008, -976, -816, -784, -880, -848,
|
|
|
|
5504, 5248, 6016, 5760, 4480, 4224, 4992, 4736,
|
|
|
|
7552, 7296, 8064, 7808, 6528, 6272, 7040, 6784,
|
|
|
|
2752, 2624, 3008, 2880, 2240, 2112, 2496, 2368,
|
|
|
|
3776, 3648, 4032, 3904, 3264, 3136, 3520, 3392,
|
|
|
|
22016, 20992, 24064, 23040, 17920, 16896, 19968, 18944,
|
|
|
|
30208, 29184, 32256, 31232, 26112, 25088, 28160, 27136,
|
|
|
|
11008, 10496, 12032, 11520, 8960, 8448, 9984, 9472,
|
|
|
|
15104, 14592, 16128, 15616, 13056, 12544, 14080, 13568,
|
|
|
|
344, 328, 376, 360, 280, 264, 312, 296,
|
|
|
|
472, 456, 504, 488, 408, 392, 440, 424,
|
|
|
|
88, 72, 120, 104, 24, 8, 56, 40,
|
|
|
|
216, 200, 248, 232, 152, 136, 184, 168,
|
|
|
|
1376, 1312, 1504, 1440, 1120, 1056, 1248, 1184,
|
|
|
|
1888, 1824, 2016, 1952, 1632, 1568, 1760, 1696,
|
|
|
|
688, 656, 752, 720, 560, 528, 624, 592,
|
|
|
|
944, 912, 1008, 976, 816, 784, 880, 848
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline gint
|
|
|
|
alaw_to_s16 (guint8 a_val)
|
|
|
|
{
|
|
|
|
return alaw_to_s16_table[a_val];
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* GST_ALAW_DEC_USE_TABLE */
|
|
|
|
|
|
|
|
static inline gint
|
2004-03-14 22:34:33 +00:00
|
|
|
alaw_to_s16 (guint8 a_val)
|
2003-03-03 22:17:28 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
gint t;
|
|
|
|
gint seg;
|
|
|
|
|
|
|
|
a_val ^= 0x55;
|
|
|
|
t = a_val & 0x7f;
|
|
|
|
if (t < 16)
|
|
|
|
t = (t << 4) + 8;
|
|
|
|
else {
|
|
|
|
seg = (t >> 4) & 0x07;
|
|
|
|
t = ((t & 0x0f) << 4) + 0x108;
|
|
|
|
t <<= seg - 1;
|
|
|
|
}
|
|
|
|
return ((a_val & 0x80) ? t : -t);
|
2003-03-03 22:17:28 +00:00
|
|
|
}
|
|
|
|
|
2007-09-25 16:05:29 +00:00
|
|
|
#endif /* GST_ALAW_DEC_USE_TABLE */
|
|
|
|
|
gst/law/: Ported alaw and mulaw plugins to 0.9, fixed the negotiation as well.
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_setcaps),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_setcaps),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_setcaps),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_setcaps),
(gst_mulawenc_init), (gst_mulawenc_chain):
Ported alaw and mulaw plugins to 0.9, fixed the negotiation as
well.
2005-05-06 14:08:56 +00:00
|
|
|
static gboolean
|
2011-08-29 17:11:25 +00:00
|
|
|
gst_alaw_dec_setcaps (GstALawDec * alawdec, GstCaps * caps)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2007-07-06 15:00:47 +00:00
|
|
|
int rate, channels;
|
|
|
|
gboolean ret;
|
2008-04-01 11:00:43 +00:00
|
|
|
GstCaps *outcaps;
|
2012-03-07 13:51:09 +00:00
|
|
|
GstAudioInfo info;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2008-04-01 11:00:43 +00:00
|
|
|
|
2007-07-06 15:00:47 +00:00
|
|
|
ret = gst_structure_get_int (structure, "rate", &rate);
|
2008-04-01 11:00:43 +00:00
|
|
|
ret &= gst_structure_get_int (structure, "channels", &channels);
|
2007-07-06 15:00:47 +00:00
|
|
|
if (!ret)
|
gst/law/: Ported alaw and mulaw plugins to 0.9, fixed the negotiation as well.
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_setcaps),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_setcaps),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_setcaps),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_setcaps),
(gst_mulawenc_init), (gst_mulawenc_chain):
Ported alaw and mulaw plugins to 0.9, fixed the negotiation as
well.
2005-05-06 14:08:56 +00:00
|
|
|
return FALSE;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2012-03-07 13:51:09 +00:00
|
|
|
gst_audio_info_init (&info);
|
|
|
|
gst_audio_info_set_format (&info, GST_AUDIO_FORMAT_S16, rate, channels, NULL);
|
2005-02-08 10:58:13 +00:00
|
|
|
|
2012-03-07 13:51:09 +00:00
|
|
|
outcaps = gst_audio_info_to_caps (&info);
|
2008-04-01 11:00:43 +00:00
|
|
|
ret = gst_pad_set_caps (alawdec->srcpad, outcaps);
|
|
|
|
gst_caps_unref (outcaps);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2008-04-01 11:00:43 +00:00
|
|
|
if (ret) {
|
|
|
|
GST_DEBUG_OBJECT (alawdec, "rate=%d, channels=%d", rate, channels);
|
2012-03-07 13:51:09 +00:00
|
|
|
alawdec->info = info;
|
2008-04-01 11:00:43 +00:00
|
|
|
}
|
|
|
|
return ret;
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2009-02-22 17:47:35 +00:00
|
|
|
static GstCaps *
|
2011-08-29 17:11:25 +00:00
|
|
|
gst_alaw_dec_getcaps (GstPad * pad, GstCaps * filter)
|
2009-02-22 17:47:35 +00:00
|
|
|
{
|
|
|
|
GstALawDec *alawdec;
|
|
|
|
GstPad *otherpad;
|
2009-06-30 13:59:20 +00:00
|
|
|
GstCaps *othercaps, *result;
|
2012-03-10 09:51:44 +00:00
|
|
|
GstCaps *templ;
|
2010-03-19 23:54:14 +00:00
|
|
|
const gchar *name;
|
2009-06-30 13:59:20 +00:00
|
|
|
gint i;
|
2009-02-22 17:47:35 +00:00
|
|
|
|
|
|
|
alawdec = GST_ALAW_DEC (GST_PAD_PARENT (pad));
|
|
|
|
|
2009-06-30 13:59:20 +00:00
|
|
|
/* figure out the name of the caps we are going to return */
|
2009-02-22 17:47:35 +00:00
|
|
|
if (pad == alawdec->srcpad) {
|
2011-12-09 09:50:18 +00:00
|
|
|
name = "audio/x-raw";
|
2009-02-22 17:47:35 +00:00
|
|
|
otherpad = alawdec->sinkpad;
|
|
|
|
} else {
|
2009-06-30 13:59:20 +00:00
|
|
|
name = "audio/x-alaw";
|
2009-02-22 17:47:35 +00:00
|
|
|
otherpad = alawdec->srcpad;
|
|
|
|
}
|
2009-06-30 13:59:20 +00:00
|
|
|
/* get caps from the peer, this can return NULL when there is no peer */
|
2011-12-09 09:50:18 +00:00
|
|
|
othercaps = gst_pad_peer_query_caps (otherpad, NULL);
|
2009-02-22 17:47:35 +00:00
|
|
|
|
2009-06-30 13:59:20 +00:00
|
|
|
/* get the template caps to make sure we return something acceptable */
|
|
|
|
templ = gst_pad_get_pad_template_caps (pad);
|
2009-02-22 17:47:35 +00:00
|
|
|
|
2009-06-30 13:59:20 +00:00
|
|
|
if (othercaps) {
|
|
|
|
/* there was a peer */
|
|
|
|
othercaps = gst_caps_make_writable (othercaps);
|
|
|
|
|
|
|
|
/* go through the caps and remove the fields we don't want */
|
|
|
|
for (i = 0; i < gst_caps_get_size (othercaps); i++) {
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (othercaps, i);
|
|
|
|
|
|
|
|
/* adjust the name */
|
|
|
|
gst_structure_set_name (structure, name);
|
|
|
|
|
|
|
|
if (pad == alawdec->sinkpad) {
|
|
|
|
/* remove the fields we don't want */
|
2012-08-12 11:16:32 +00:00
|
|
|
gst_structure_remove_fields (structure, "format", "layout", NULL);
|
2009-06-30 13:59:20 +00:00
|
|
|
} else {
|
|
|
|
/* add fixed fields */
|
2011-12-09 09:50:18 +00:00
|
|
|
gst_structure_set (structure, "format", G_TYPE_STRING,
|
2012-08-12 11:16:32 +00:00
|
|
|
GST_AUDIO_NE (S16), "layout", G_TYPE_STRING, "interleaved", NULL);
|
2009-06-30 13:59:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* filter against the allowed caps of the pad to return our result */
|
|
|
|
result = gst_caps_intersect (othercaps, templ);
|
2009-02-22 17:47:35 +00:00
|
|
|
gst_caps_unref (othercaps);
|
2012-03-10 09:51:44 +00:00
|
|
|
gst_caps_unref (templ);
|
2009-06-30 13:59:20 +00:00
|
|
|
} else {
|
|
|
|
/* there was no peer, return the template caps */
|
2012-03-10 09:51:44 +00:00
|
|
|
result = templ;
|
2009-02-22 17:47:35 +00:00
|
|
|
}
|
2011-12-09 09:50:18 +00:00
|
|
|
if (filter && result) {
|
|
|
|
GstCaps *temp;
|
2009-06-30 13:59:20 +00:00
|
|
|
|
2011-12-09 09:50:18 +00:00
|
|
|
temp = gst_caps_intersect (result, filter);
|
|
|
|
gst_caps_unref (result);
|
|
|
|
result = temp;
|
|
|
|
}
|
2009-06-30 13:59:20 +00:00
|
|
|
return result;
|
2009-02-22 17:47:35 +00:00
|
|
|
}
|
|
|
|
|
2011-11-15 15:31:45 +00:00
|
|
|
static gboolean
|
2011-11-16 16:27:13 +00:00
|
|
|
gst_alaw_dec_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
2011-11-15 15:31:45 +00:00
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
case GST_QUERY_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *filter, *caps;
|
|
|
|
|
|
|
|
gst_query_parse_caps (query, &filter);
|
|
|
|
caps = gst_alaw_dec_getcaps (pad, filter);
|
|
|
|
gst_query_set_caps_result (query, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2011-11-16 16:27:13 +00:00
|
|
|
res = gst_pad_query_default (pad, parent, query);
|
2011-11-15 15:31:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-11-02 18:13:24 +00:00
|
|
|
static void
|
2011-08-29 17:11:25 +00:00
|
|
|
gst_alaw_dec_class_init (GstALawDecClass * klass)
|
2003-11-02 18:13:24 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&alaw_dec_src_factory));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&alaw_dec_sink_factory));
|
2007-09-25 17:18:34 +00:00
|
|
|
|
2012-04-09 23:51:41 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class, "A Law audio decoder",
|
2007-09-25 17:18:34 +00:00
|
|
|
"Codec/Decoder/Audio", "Convert 8bit A law to 16bit PCM",
|
|
|
|
"Zaheer Abbas Merali <zaheerabbas at merali dot org>");
|
|
|
|
|
|
|
|
element_class->change_state = GST_DEBUG_FUNCPTR (gst_alaw_dec_change_state);
|
2011-08-29 17:11:25 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (alaw_dec_debug, "alawdec", 0, "A Law audio decoder");
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-08-29 17:11:25 +00:00
|
|
|
gst_alaw_dec_init (GstALawDec * alawdec)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2008-12-13 15:34:01 +00:00
|
|
|
alawdec->sinkpad =
|
|
|
|
gst_pad_new_from_static_template (&alaw_dec_sink_factory, "sink");
|
2011-11-15 15:31:45 +00:00
|
|
|
gst_pad_set_query_function (alawdec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alaw_dec_query));
|
2011-08-29 17:11:25 +00:00
|
|
|
gst_pad_set_event_function (alawdec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alaw_dec_event));
|
2007-09-25 17:18:34 +00:00
|
|
|
gst_pad_set_chain_function (alawdec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alaw_dec_chain));
|
gst/law/: Fix capsnego in all four, remove the unused property functions and simplify the chain functions slightly. I...
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
(gst_alawdec_base_init), (gst_alawdec_class_init),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
(gst_alawenc_base_init), (gst_alawenc_class_init),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
(gst_mulawdec_base_init), (gst_mulawdec_class_init),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
(gst_mulawenc_base_init), (gst_mulawenc_class_init),
(gst_mulawenc_init), (gst_mulawenc_chain):
Fix capsnego in all four, remove the unused property functions and
simplify the chain functions slightly. I guess we could use macros
or something similar for those, since the code is so similar, but
I'm currently too lazy...
2004-03-26 01:56:11 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (alawdec), alawdec->sinkpad);
|
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
alawdec->srcpad =
|
|
|
|
gst_pad_new_from_static_template (&alaw_dec_src_factory, "src");
|
2007-07-06 15:00:47 +00:00
|
|
|
gst_pad_use_fixed_caps (alawdec->srcpad);
|
2011-11-15 15:31:45 +00:00
|
|
|
gst_pad_set_query_function (alawdec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_alaw_dec_query));
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (alawdec), alawdec->srcpad);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2011-08-29 17:11:25 +00:00
|
|
|
static gboolean
|
2011-11-17 14:02:55 +00:00
|
|
|
gst_alaw_dec_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
2011-08-29 17:11:25 +00:00
|
|
|
{
|
|
|
|
GstALawDec *alawdec;
|
|
|
|
gboolean res;
|
|
|
|
|
2011-11-17 14:02:55 +00:00
|
|
|
alawdec = GST_ALAW_DEC (parent);
|
2011-08-29 17:11:25 +00:00
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
gst_event_parse_caps (event, &caps);
|
|
|
|
gst_alaw_dec_setcaps (alawdec, caps);
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2011-11-17 14:02:55 +00:00
|
|
|
res = gst_pad_event_default (pad, parent, event);
|
2011-08-29 17:11:25 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
gst/law/: Ported alaw and mulaw plugins to 0.9, fixed the negotiation as well.
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_setcaps),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_setcaps),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_setcaps),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_setcaps),
(gst_mulawenc_init), (gst_mulawenc_chain):
Ported alaw and mulaw plugins to 0.9, fixed the negotiation as
well.
2005-05-06 14:08:56 +00:00
|
|
|
static GstFlowReturn
|
2011-11-17 14:02:55 +00:00
|
|
|
gst_alaw_dec_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
|
|
|
GstALawDec *alawdec;
|
2012-01-23 16:25:37 +00:00
|
|
|
GstMapInfo inmap, outmap;
|
2001-12-22 23:27:31 +00:00
|
|
|
gint16 *linear_data;
|
|
|
|
guint8 *alaw_data;
|
2012-03-07 13:51:09 +00:00
|
|
|
gsize alaw_size, linear_size;
|
2004-03-14 22:34:33 +00:00
|
|
|
GstBuffer *outbuf;
|
2003-03-03 22:17:28 +00:00
|
|
|
gint i;
|
2006-05-24 10:00:50 +00:00
|
|
|
GstFlowReturn ret;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2011-11-17 14:02:55 +00:00
|
|
|
alawdec = GST_ALAW_DEC (parent);
|
2007-09-25 17:18:34 +00:00
|
|
|
|
2012-03-07 13:51:09 +00:00
|
|
|
if (G_UNLIKELY (!GST_AUDIO_INFO_IS_VALID (&alawdec->info)))
|
2007-09-25 17:18:34 +00:00
|
|
|
goto not_negotiated;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (alawdec, "buffer with ts=%" GST_TIME_FORMAT,
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buffer)));
|
2006-05-24 10:00:50 +00:00
|
|
|
|
2012-01-23 16:25:37 +00:00
|
|
|
gst_buffer_map (buffer, &inmap, GST_MAP_READ);
|
|
|
|
alaw_data = inmap.data;
|
|
|
|
alaw_size = inmap.size;
|
2006-05-24 10:00:50 +00:00
|
|
|
|
2012-03-07 13:51:09 +00:00
|
|
|
linear_size = alaw_size * 2;
|
|
|
|
|
2012-03-15 12:36:17 +00:00
|
|
|
outbuf = gst_buffer_new_allocate (NULL, linear_size, NULL);
|
2008-04-01 11:00:43 +00:00
|
|
|
|
2012-01-23 16:25:37 +00:00
|
|
|
gst_buffer_map (outbuf, &outmap, GST_MAP_WRITE);
|
|
|
|
linear_data = (gint16 *) outmap.data;
|
2006-05-24 10:00:50 +00:00
|
|
|
|
|
|
|
/* copy discont flag */
|
|
|
|
if (GST_BUFFER_FLAG_IS_SET (buffer, GST_BUFFER_FLAG_DISCONT))
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DISCONT);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
gst/law/: Ported alaw and mulaw plugins to 0.9, fixed the negotiation as well.
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_setcaps),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_setcaps),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_setcaps),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_setcaps),
(gst_mulawenc_init), (gst_mulawenc_chain):
Ported alaw and mulaw plugins to 0.9, fixed the negotiation as
well.
2005-05-06 14:08:56 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buffer);
|
2012-03-07 13:51:09 +00:00
|
|
|
if (GST_BUFFER_DURATION_IS_VALID (buffer)) {
|
|
|
|
GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buffer);
|
|
|
|
} else {
|
|
|
|
GST_BUFFER_DURATION (outbuf) = gst_util_uint64_scale_int (GST_SECOND,
|
|
|
|
linear_size, GST_AUDIO_INFO_RATE (&alawdec->info) *
|
|
|
|
GST_AUDIO_INFO_BPF (&alawdec->info));
|
|
|
|
}
|
gst/law/: Fix capsnego in all four, remove the unused property functions and simplify the chain functions slightly. I...
Original commit message from CVS:
* gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
(gst_alawdec_base_init), (gst_alawdec_class_init),
(gst_alawdec_init), (gst_alawdec_chain):
* gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
(gst_alawenc_base_init), (gst_alawenc_class_init),
(gst_alawenc_init), (gst_alawenc_chain):
* gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
(gst_mulawdec_base_init), (gst_mulawdec_class_init),
(gst_mulawdec_init), (gst_mulawdec_chain):
* gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
(gst_mulawenc_base_init), (gst_mulawenc_class_init),
(gst_mulawenc_init), (gst_mulawenc_chain):
Fix capsnego in all four, remove the unused property functions and
simplify the chain functions slightly. I guess we could use macros
or something similar for those, since the code is so similar, but
I'm currently too lazy...
2004-03-26 01:56:11 +00:00
|
|
|
|
2006-05-24 10:00:50 +00:00
|
|
|
for (i = 0; i < alaw_size; i++) {
|
|
|
|
linear_data[i] = alaw_to_s16 (alaw_data[i]);
|
2003-03-03 22:17:28 +00:00
|
|
|
}
|
2011-08-29 17:11:25 +00:00
|
|
|
|
2012-01-23 16:25:37 +00:00
|
|
|
gst_buffer_unmap (outbuf, &outmap);
|
|
|
|
gst_buffer_unmap (buffer, &inmap);
|
2008-04-01 11:00:43 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2006-05-24 10:00:50 +00:00
|
|
|
|
|
|
|
ret = gst_pad_push (alawdec->srcpad, outbuf);
|
|
|
|
|
|
|
|
return ret;
|
2007-09-25 17:18:34 +00:00
|
|
|
|
|
|
|
not_negotiated:
|
|
|
|
{
|
2008-04-01 11:00:43 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2009-02-14 17:56:05 +00:00
|
|
|
GST_WARNING_OBJECT (alawdec, "no input format set: not-negotiated");
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
2008-04-01 11:00:43 +00:00
|
|
|
}
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
2007-07-06 15:00:47 +00:00
|
|
|
|
|
|
|
static GstStateChangeReturn
|
2007-09-25 17:18:34 +00:00
|
|
|
gst_alaw_dec_change_state (GstElement * element, GstStateChange transition)
|
2007-07-06 15:00:47 +00:00
|
|
|
{
|
|
|
|
GstStateChangeReturn ret;
|
2007-09-25 17:18:34 +00:00
|
|
|
GstALawDec *dec = GST_ALAW_DEC (element);
|
2007-07-06 15:00:47 +00:00
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
|
|
|
if (ret != GST_STATE_CHANGE_SUCCESS)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2012-03-07 13:51:09 +00:00
|
|
|
gst_audio_info_init (&dec->info);
|
2007-07-06 15:00:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|