2002-03-20 21:45:04 +00:00
|
|
|
/* GStreamer
|
2001-12-23 14:29:43 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-29 19:46:13 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-23 14:29:43 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "gstgsmdec.h"
|
|
|
|
|
|
|
|
/* elementfactory information */
|
|
|
|
GstElementDetails gst_gsmdec_details = {
|
2003-11-16 22:02:23 +00:00
|
|
|
"GSM audio decoder",
|
|
|
|
"Codec/Decoder/Audio",
|
|
|
|
"Decodes GSM encoded audio",
|
2001-12-23 14:29:43 +00:00
|
|
|
"Wim Taymans <wim.taymans@chello.be>",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* GSMDec signals and args */
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-23 14:29:43 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
enum
|
|
|
|
{
|
2004-05-21 23:28:57 +00:00
|
|
|
ARG_0
|
|
|
|
/* FILL ME */
|
2001-12-23 14:29:43 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_gsmdec_base_init (gpointer g_class);
|
|
|
|
static void gst_gsmdec_class_init (GstGSMDec * klass);
|
|
|
|
static void gst_gsmdec_init (GstGSMDec * gsmdec);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_gsmdec_chain (GstPad * pad, GstData * _data);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-03-19 04:10:06 +00:00
|
|
|
/*static guint gst_gsmdec_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
GType
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_gsmdec_get_type (void)
|
|
|
|
{
|
2001-12-23 14:29:43 +00:00
|
|
|
static GType gsmdec_type = 0;
|
|
|
|
|
|
|
|
if (!gsmdec_type) {
|
|
|
|
static const GTypeInfo gsmdec_info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstGSMDecClass),
|
2003-11-01 16:35:25 +00:00
|
|
|
gst_gsmdec_base_init,
|
2001-12-23 14:29:43 +00:00
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GClassInitFunc) gst_gsmdec_class_init,
|
2001-12-23 14:29:43 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstGSMDec),
|
2001-12-23 14:29:43 +00:00
|
|
|
0,
|
2004-03-14 22:34:33 +00:00
|
|
|
(GInstanceInitFunc) gst_gsmdec_init,
|
2001-12-23 14:29:43 +00:00
|
|
|
};
|
2004-03-15 19:32:27 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gsmdec_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstGSMDec", &gsmdec_info, 0);
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
return gsmdec_type;
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gsmdec_sink_template =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2005-01-24 21:57:15 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-gsm, " "rate = (int) 8000, " "channels = (int) 1")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gsmdec_src_template =
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"endianness = (int) BYTE_ORDER, "
|
|
|
|
"signed = (boolean) true, "
|
|
|
|
"width = (int) 16, "
|
2005-01-24 21:57:15 +00:00
|
|
|
"depth = (int) 16, " "rate = (int) 8000, " "channels = (int) 1")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-11-01 16:35:25 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gsmdec_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gsmdec_sink_template));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&gsmdec_src_template));
|
2003-11-01 16:35:25 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_gsmdec_details);
|
|
|
|
}
|
|
|
|
|
2001-12-23 14:29:43 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_gsmdec_class_init (GstGSMDec * klass)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-23 14:29:43 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_gsmdec_init (GstGSMDec * gsmdec)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
2003-06-29 19:46:13 +00:00
|
|
|
GST_DEBUG ("gst_gsmdec_init: initializing");
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
/* create the sink and src pads */
|
2004-03-14 22:34:33 +00:00
|
|
|
gsmdec->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gsmdec_sink_template), "sink");
|
2001-12-23 14:29:43 +00:00
|
|
|
gst_pad_set_chain_function (gsmdec->sinkpad, gst_gsmdec_chain);
|
2004-04-19 02:00:24 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (gsmdec), gsmdec->sinkpad);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gsmdec->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gsmdec_src_template), "src");
|
2001-12-23 14:29:43 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (gsmdec), gsmdec->srcpad);
|
|
|
|
|
|
|
|
gsmdec->state = gsm_create ();
|
|
|
|
gsmdec->bufsize = 0;
|
2005-01-24 21:57:15 +00:00
|
|
|
gsmdec->next_ts = 0;
|
|
|
|
gsmdec->next_of = 0;
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_gsmdec_chain (GstPad * pad, GstData * _data)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
|
|
|
GstGSMDec *gsmdec;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
2005-01-24 21:57:15 +00:00
|
|
|
g_return_if_fail (_data != NULL);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
gsmdec = GST_GSMDEC (gst_pad_get_parent (pad));
|
|
|
|
|
2005-01-24 21:57:15 +00:00
|
|
|
if (GST_IS_EVENT (_data)) {
|
|
|
|
GstEvent *event = GST_EVENT (_data);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_EOS:{
|
|
|
|
gst_element_set_eos (GST_ELEMENT (gsmdec));
|
|
|
|
gst_pad_push (gsmdec->srcpad, _data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_EVENT_DISCONTINUOUS:{
|
|
|
|
/* drop the discontinuity */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:{
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
} else if (GST_IS_BUFFER (_data)) {
|
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
|
|
|
gsm_byte *data = (gsm_byte *) GST_BUFFER_DATA (buf);
|
|
|
|
guint size = GST_BUFFER_SIZE (buf);
|
|
|
|
|
|
|
|
if (gsmdec->bufsize && (gsmdec->bufsize + size >= 33)) {
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
memcpy (gsmdec->buffer + gsmdec->bufsize, data,
|
|
|
|
(33 - gsmdec->bufsize) * sizeof (gsm_byte));
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new_and_alloc (160 * sizeof (gsm_signal));
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = gsmdec->next_ts;
|
|
|
|
GST_BUFFER_DURATION (outbuf) = 20 * GST_MSECOND;
|
|
|
|
GST_BUFFER_OFFSET (outbuf) = gsmdec->next_of;
|
|
|
|
GST_BUFFER_OFFSET_END (outbuf) = gsmdec->next_of + 160 - 1;
|
|
|
|
gsmdec->next_ts += 20 * GST_MSECOND;
|
|
|
|
gsmdec->next_of += 160;
|
|
|
|
|
|
|
|
gsm_decode (gsmdec->state, gsmdec->buffer,
|
|
|
|
(gsm_signal *) GST_BUFFER_DATA (outbuf));
|
|
|
|
|
|
|
|
gst_pad_push (gsmdec->srcpad, GST_DATA (outbuf));
|
|
|
|
|
|
|
|
size -= (33 - gsmdec->bufsize);
|
|
|
|
data += (33 - gsmdec->bufsize);
|
|
|
|
gsmdec->bufsize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (size >= 33) {
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new_and_alloc (160 * sizeof (gsm_signal));
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = gsmdec->next_ts;
|
|
|
|
GST_BUFFER_DURATION (outbuf) = 20 * GST_MSECOND;
|
|
|
|
GST_BUFFER_OFFSET (outbuf) = gsmdec->next_of;
|
|
|
|
GST_BUFFER_OFFSET_END (outbuf) = gsmdec->next_of + 160 - 1;
|
|
|
|
gsmdec->next_ts += 20 * GST_MSECOND;
|
|
|
|
gsmdec->next_of += 160;
|
|
|
|
|
|
|
|
gsm_decode (gsmdec->state, data, (gsm_signal *) GST_BUFFER_DATA (outbuf));
|
|
|
|
gst_pad_push (gsmdec->srcpad, GST_DATA (outbuf));
|
|
|
|
|
|
|
|
size -= 33;
|
|
|
|
data += 33;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size) {
|
|
|
|
memcpy (gsmdec->buffer + gsmdec->bufsize, data, size * sizeof (gsm_byte));
|
|
|
|
gsmdec->bufsize += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
return;
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
}
|