2002-01-19 15:02:09 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:27:31 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2009-01-28 10:29:42 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-mulawdec
|
|
|
|
*
|
|
|
|
* This element decodes mulaw audio. Mulaw 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
|
2001-12-22 23:27:31 +00:00
|
|
|
#include <gst/gst.h>
|
2011-08-30 10:25:35 +00:00
|
|
|
|
2001-12-22 23:27:31 +00:00
|
|
|
#include "mulaw-decode.h"
|
|
|
|
#include "mulaw-conversion.h"
|
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
2011-09-06 11:16:27 +00:00
|
|
|
#define INT_FORMAT "S16LE"
|
2011-08-30 10:25:35 +00:00
|
|
|
#else
|
2011-09-06 11:16:27 +00:00
|
|
|
#define INT_FORMAT "S16BE"
|
2011-08-30 10:25:35 +00:00
|
|
|
#endif
|
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
extern GstStaticPadTemplate mulaw_dec_src_factory;
|
|
|
|
extern GstStaticPadTemplate mulaw_dec_sink_factory;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
/* Stereo signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:31 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-22 23:27:31 +00:00
|
|
|
ARG_0
|
|
|
|
};
|
|
|
|
|
2007-07-06 15:00:47 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_mulawdec_change_state (GstElement * element, GstStateChange transition);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
static gboolean gst_mulawdec_event (GstPad * pad, GstEvent * event);
|
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 gst_mulawdec_chain (GstPad * pad, GstBuffer * buffer);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
#define gst_mulawdec_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstMuLawDec, gst_mulawdec, GST_TYPE_ELEMENT);
|
2004-03-14 22:34:33 +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
|
|
|
static gboolean
|
2011-08-30 10:25:35 +00:00
|
|
|
mulawdec_setcaps (GstMuLawDec * mulawdec, 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;
|
2005-02-08 10:58:13 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2007-07-06 15:00:47 +00:00
|
|
|
ret = gst_structure_get_int (structure, "rate", &rate);
|
|
|
|
ret = ret && gst_structure_get_int (structure, "channels", &channels);
|
|
|
|
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;
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
outcaps = gst_caps_new_simple ("audio/x-raw",
|
|
|
|
"format", G_TYPE_STRING, INT_FORMAT,
|
2007-07-06 15:00:47 +00:00
|
|
|
"rate", G_TYPE_INT, rate, "channels", G_TYPE_INT, channels, NULL);
|
2008-04-01 11:00:43 +00:00
|
|
|
ret = gst_pad_set_caps (mulawdec->srcpad, outcaps);
|
|
|
|
gst_caps_unref (outcaps);
|
2005-02-08 10:58:13 +00:00
|
|
|
|
2008-04-01 11:00:43 +00:00
|
|
|
if (ret) {
|
|
|
|
GST_DEBUG_OBJECT (mulawdec, "rate=%d, channels=%d", rate, channels);
|
|
|
|
mulawdec->rate = rate;
|
|
|
|
mulawdec->channels = channels;
|
|
|
|
}
|
|
|
|
return ret;
|
2003-03-03 22:17:28 +00:00
|
|
|
}
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2009-02-22 17:47:35 +00:00
|
|
|
static GstCaps *
|
2011-08-30 10:25:35 +00:00
|
|
|
mulawdec_getcaps (GstPad * pad, GstCaps * filter)
|
2009-02-22 17:47:35 +00:00
|
|
|
{
|
|
|
|
GstMuLawDec *mulawdec;
|
|
|
|
GstPad *otherpad;
|
2009-06-30 13:59:20 +00:00
|
|
|
GstCaps *othercaps, *result;
|
|
|
|
const 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
|
|
|
|
|
|
|
mulawdec = GST_MULAWDEC (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 == mulawdec->srcpad) {
|
2011-08-30 10:25:35 +00:00
|
|
|
name = "audio/x-raw";
|
2009-02-22 17:47:35 +00:00
|
|
|
otherpad = mulawdec->sinkpad;
|
|
|
|
} else {
|
2009-06-30 13:59:20 +00:00
|
|
|
name = "audio/x-mulaw";
|
2009-02-22 17:47:35 +00:00
|
|
|
otherpad = mulawdec->srcpad;
|
|
|
|
}
|
2009-06-30 13:59:20 +00:00
|
|
|
/* get caps from the peer, this can return NULL when there is no peer */
|
2011-08-30 10:25:35 +00:00
|
|
|
othercaps = gst_pad_peer_get_caps (otherpad, filter);
|
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 == mulawdec->sinkpad) {
|
|
|
|
/* remove the fields we don't want */
|
2011-08-30 10:25:35 +00:00
|
|
|
gst_structure_remove_fields (structure, "format", NULL);
|
2009-06-30 13:59:20 +00:00
|
|
|
} else {
|
|
|
|
/* add fixed fields */
|
2011-08-30 10:25:35 +00:00
|
|
|
gst_structure_set (structure, "format", G_TYPE_STRING, INT_FORMAT,
|
|
|
|
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);
|
2009-06-30 13:59:20 +00:00
|
|
|
} else {
|
|
|
|
/* there was no peer, return the template caps */
|
|
|
|
result = gst_caps_copy (templ);
|
2009-02-22 17:47:35 +00:00
|
|
|
}
|
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
|
|
|
|
gst_mulawdec_query (GstPad * pad, GstQuery * query)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
case GST_QUERY_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *filter, *caps;
|
|
|
|
|
|
|
|
gst_query_parse_caps (query, &filter);
|
|
|
|
caps = mulawdec_getcaps (pad, filter);
|
|
|
|
gst_query_set_caps_result (query, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = gst_pad_query_default (pad, query);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2003-11-02 18:13:24 +00:00
|
|
|
static void
|
2011-08-30 10:25:35 +00:00
|
|
|
gst_mulawdec_class_init (GstMuLawDecClass * klass)
|
2003-11-02 18:13:24 +00:00
|
|
|
{
|
2011-08-30 10:25:35 +00:00
|
|
|
GstElementClass *element_class = (GstElementClass *) klass;
|
2003-11-02 18:13:24 +00:00
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mulaw_dec_src_factory));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&mulaw_dec_sink_factory));
|
2011-08-30 10:25:35 +00:00
|
|
|
|
2010-03-18 13:31:35 +00:00
|
|
|
gst_element_class_set_details_simple (element_class, "Mu Law audio decoder",
|
|
|
|
"Codec/Decoder/Audio",
|
|
|
|
"Convert 8bit mu law to 16bit PCM",
|
|
|
|
"Zaheer Abbas Merali <zaheerabbas at merali dot org>");
|
2007-07-06 15:00:47 +00:00
|
|
|
|
|
|
|
element_class->change_state = GST_DEBUG_FUNCPTR (gst_mulawdec_change_state);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_mulawdec_init (GstMuLawDec * mulawdec)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
mulawdec->sinkpad =
|
2008-12-13 15:34:01 +00:00
|
|
|
gst_pad_new_from_static_template (&mulaw_dec_sink_factory, "sink");
|
2011-11-15 15:31:45 +00:00
|
|
|
gst_pad_set_query_function (mulawdec->sinkpad, gst_mulawdec_query);
|
2011-08-30 10:25:35 +00:00
|
|
|
gst_pad_set_event_function (mulawdec->sinkpad, gst_mulawdec_event);
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pad_set_chain_function (mulawdec->sinkpad, gst_mulawdec_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 (mulawdec), mulawdec->sinkpad);
|
|
|
|
|
2008-12-13 15:34:01 +00:00
|
|
|
mulawdec->srcpad =
|
|
|
|
gst_pad_new_from_static_template (&mulaw_dec_src_factory, "src");
|
2011-11-15 15:31:45 +00:00
|
|
|
gst_pad_set_query_function (mulawdec->srcpad, gst_mulawdec_query);
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mulawdec), mulawdec->srcpad);
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
static gboolean
|
|
|
|
gst_mulawdec_event (GstPad * pad, GstEvent * event)
|
|
|
|
{
|
|
|
|
GstMuLawDec *mulawdec;
|
|
|
|
gboolean res;
|
|
|
|
|
|
|
|
mulawdec = GST_MULAWDEC (GST_PAD_PARENT (pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_CAPS:
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
|
|
gst_event_parse_caps (event, &caps);
|
|
|
|
mulawdec_setcaps (mulawdec, caps);
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = gst_pad_event_default (pad, event);
|
|
|
|
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
|
|
|
|
gst_mulawdec_chain (GstPad * pad, GstBuffer * buffer)
|
2001-12-22 23:27:31 +00:00
|
|
|
{
|
|
|
|
GstMuLawDec *mulawdec;
|
|
|
|
gint16 *linear_data;
|
|
|
|
guint8 *mulaw_data;
|
2011-08-30 10:25:35 +00:00
|
|
|
gsize mulaw_size, linear_size;
|
2004-03-14 22:34:33 +00:00
|
|
|
GstBuffer *outbuf;
|
2006-05-24 10:00:50 +00:00
|
|
|
GstFlowReturn ret;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2008-02-28 08:37:44 +00:00
|
|
|
mulawdec = GST_MULAWDEC (GST_PAD_PARENT (pad));
|
|
|
|
|
2008-04-01 11:00:43 +00:00
|
|
|
if (G_UNLIKELY (mulawdec->rate == 0))
|
|
|
|
goto not_negotiated;
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
mulaw_data = gst_buffer_map (buffer, &mulaw_size, NULL, GST_MAP_READ);
|
2006-05-24 10:00:50 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
linear_size = mulaw_size * 2;
|
2008-04-01 11:00:43 +00:00
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
outbuf = gst_buffer_new_allocate (NULL, linear_size, 0);
|
|
|
|
linear_data = gst_buffer_map (outbuf, NULL, NULL, GST_MAP_WRITE);
|
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);
|
|
|
|
|
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);
|
2007-11-02 17:23:43 +00:00
|
|
|
if (GST_BUFFER_DURATION (outbuf) == GST_CLOCK_TIME_NONE)
|
|
|
|
GST_BUFFER_DURATION (outbuf) = gst_util_uint64_scale_int (GST_SECOND,
|
2011-08-30 10:25:35 +00:00
|
|
|
linear_size, 2 * mulawdec->rate * mulawdec->channels);
|
2007-11-02 17:23:43 +00:00
|
|
|
else
|
|
|
|
GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (buffer);
|
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
|
|
|
mulaw_decode (mulaw_data, linear_data, mulaw_size);
|
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
|
|
|
|
2011-08-30 10:25:35 +00:00
|
|
|
gst_buffer_unmap (outbuf, linear_data, -1);
|
|
|
|
gst_buffer_unmap (buffer, mulaw_data, -1);
|
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_unref (buffer);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2006-05-24 10:00:50 +00:00
|
|
|
ret = gst_pad_push (mulawdec->srcpad, outbuf);
|
|
|
|
|
|
|
|
return ret;
|
2008-04-01 11:00:43 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
not_negotiated:
|
|
|
|
{
|
2009-02-14 17:56:05 +00:00
|
|
|
GST_WARNING_OBJECT (mulawdec, "no input format set: not-negotiated");
|
2008-04-01 11:00:43 +00:00
|
|
|
gst_buffer_unref (buffer);
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
}
|
2001-12-22 23:27:31 +00:00
|
|
|
}
|
2007-07-06 15:00:47 +00:00
|
|
|
|
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_mulawdec_change_state (GstElement * element, GstStateChange transition)
|
|
|
|
{
|
|
|
|
GstStateChangeReturn ret;
|
|
|
|
GstMuLawDec *dec = GST_MULAWDEC (element);
|
|
|
|
|
|
|
|
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:
|
2008-04-01 11:00:43 +00:00
|
|
|
dec->rate = 0;
|
|
|
|
dec->channels = 0;
|
2007-07-06 15:00:47 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|