2005-10-25 16:12:03 +00:00
|
|
|
/*
|
|
|
|
* Farsight
|
2005-10-26 15:45:11 +00:00
|
|
|
* GStreamer GSM encoder
|
2005-10-25 16:12:03 +00:00
|
|
|
* Copyright (C) 2005 Philippe Khalaf <burger@speedy.org>
|
2001-12-23 14:29:43 +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
|
|
|
|
* 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"
|
|
|
|
|
2005-10-25 16:12:03 +00:00
|
|
|
GST_DEBUG_CATEGORY (gsmdec_debug);
|
|
|
|
#define GST_CAT_DEFAULT (gsmdec_debug)
|
|
|
|
|
2001-12-23 14:29:43 +00:00
|
|
|
/* elementfactory information */
|
|
|
|
GstElementDetails gst_gsmdec_details = {
|
2003-11-16 22:02:23 +00:00
|
|
|
"GSM audio decoder",
|
|
|
|
"Codec/Decoder/Audio",
|
|
|
|
"Decodes GSM encoded audio",
|
2005-10-25 16:12:03 +00:00
|
|
|
"Philippe Khalaf <burger@speedy.org>",
|
2001-12-23 14:29:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
{
|
2005-10-25 16:12:03 +00:00
|
|
|
/* FILL ME */
|
2004-05-21 23:28:57 +00:00
|
|
|
ARG_0
|
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);
|
2006-03-29 16:54:12 +00:00
|
|
|
static void gst_gsmdec_finalize (GObject * object);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
static gboolean gst_gsmdec_sink_event (GstPad * pad, GstEvent * event);
|
2005-10-25 16:12:03 +00:00
|
|
|
static GstFlowReturn gst_gsmdec_chain (GstPad * pad, GstBuffer * buf);
|
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
|
|
|
{
|
2006-03-29 16:54:12 +00:00
|
|
|
GObjectClass *gobject_class;
|
2001-12-23 14:29:43 +00:00
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2004-03-14 22:34:33 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-23 14:29:43 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = gst_gsmdec_finalize;
|
2005-10-25 16:12:03 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gsmdec_debug, "gsmdec", 0, "GSM Decoder");
|
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
|
|
|
{
|
2006-03-29 16:54:12 +00:00
|
|
|
gint use_wav49;
|
|
|
|
|
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");
|
2006-03-29 16:54:12 +00:00
|
|
|
gst_pad_set_event_function (gsmdec->sinkpad, gst_gsmdec_sink_event);
|
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 ();
|
2005-10-25 16:12:03 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
/* turn on WAV49 handling */
|
|
|
|
use_wav49 = 0;
|
2005-10-25 16:12:03 +00:00
|
|
|
gsm_option (gsmdec->state, GSM_OPT_WAV49, &use_wav49);
|
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
gsmdec->adapter = gst_adapter_new ();
|
2005-01-24 21:57:15 +00:00
|
|
|
gsmdec->next_of = 0;
|
2005-10-25 16:12:03 +00:00
|
|
|
gsmdec->next_ts = 0;
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
static void
|
|
|
|
gst_gsmdec_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstGSMDec *gsmdec;
|
|
|
|
|
|
|
|
gsmdec = GST_GSMDEC (object);
|
|
|
|
|
|
|
|
g_object_unref (gsmdec->adapter);
|
|
|
|
gsm_destroy (gsmdec->state);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_gsmdec_sink_event (GstPad * pad, GstEvent * event)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
GstGSMDec *gsmdec;
|
|
|
|
|
|
|
|
gsmdec = GST_GSMDEC (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_FLUSH_START:
|
|
|
|
res = gst_pad_push_event (gsmdec->srcpad, event);
|
|
|
|
break;
|
|
|
|
case GST_EVENT_FLUSH_STOP:
|
|
|
|
gst_segment_init (&gsmdec->segment, GST_FORMAT_UNDEFINED);
|
|
|
|
res = gst_pad_push_event (gsmdec->srcpad, event);
|
|
|
|
break;
|
|
|
|
case GST_EVENT_NEWSEGMENT:
|
|
|
|
{
|
|
|
|
gboolean update;
|
|
|
|
GstFormat format;
|
|
|
|
gdouble rate;
|
|
|
|
gint64 start, stop, time;
|
|
|
|
|
|
|
|
gst_event_parse_new_segment (event, &update, &rate, &format, &start,
|
|
|
|
&stop, &time);
|
|
|
|
|
|
|
|
/* now configure the values */
|
|
|
|
gst_segment_set_newsegment (&gsmdec->segment, update,
|
|
|
|
rate, format, start, stop, time);
|
|
|
|
|
|
|
|
/* and forward */
|
|
|
|
res = gst_pad_push_event (gsmdec->srcpad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_EVENT_EOS:
|
|
|
|
default:
|
|
|
|
res = gst_pad_push_event (gsmdec->srcpad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_object_unref (gsmdec);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2005-09-23 17:05:29 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_gsmdec_chain (GstPad * pad, GstBuffer * buf)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
|
|
|
GstGSMDec *gsmdec;
|
2005-10-25 16:12:03 +00:00
|
|
|
gsm_byte *data;
|
2005-10-26 15:45:11 +00:00
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2006-03-29 16:54:12 +00:00
|
|
|
GstClockTime timestamp;
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
gsmdec = GST_GSMDEC (gst_pad_get_parent (pad));
|
2005-09-23 17:05:29 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
timestamp = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
|
|
|
if (GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_FLAG_DISCONT)) {
|
|
|
|
gst_adapter_clear (gsmdec->adapter);
|
|
|
|
}
|
|
|
|
gst_adapter_push (gsmdec->adapter, buf);
|
|
|
|
|
|
|
|
/* do we have enough bytes to read a header */
|
|
|
|
while (gst_adapter_available (gsmdec->adapter) >= 33) {
|
2005-09-23 17:05:29 +00:00
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new_and_alloc (160 * sizeof (gsm_signal));
|
2006-03-29 16:54:12 +00:00
|
|
|
|
|
|
|
/* TODO take new segment in consideration, if not given restart
|
|
|
|
* timestamps at 0 */
|
|
|
|
if (timestamp == GST_CLOCK_TIME_NONE) {
|
2005-10-25 16:12:03 +00:00
|
|
|
/* If we are not given any timestamp */
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = gsmdec->next_ts;
|
2006-03-29 16:54:12 +00:00
|
|
|
if (gsmdec->next_ts != GST_CLOCK_TIME_NONE)
|
|
|
|
gsmdec->next_ts += 20 * GST_MSECOND;
|
2005-10-25 16:12:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2006-03-29 16:54:12 +00:00
|
|
|
/* upstream gave a timestamp, use it. */
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
|
|
|
|
gsmdec->next_ts = timestamp + 20 * GST_MSECOND;
|
|
|
|
/* and make sure we interpollate in the next run */
|
|
|
|
timestamp = GST_CLOCK_TIME_NONE;
|
2005-10-25 16:12:03 +00:00
|
|
|
}
|
2005-09-23 17:05:29 +00:00
|
|
|
|
|
|
|
GST_BUFFER_DURATION (outbuf) = 20 * GST_MSECOND;
|
|
|
|
GST_BUFFER_OFFSET (outbuf) = gsmdec->next_of;
|
|
|
|
gsmdec->next_of += 160;
|
2006-03-29 16:54:12 +00:00
|
|
|
GST_BUFFER_OFFSET_END (outbuf) = gsmdec->next_of;
|
2005-09-23 17:05:29 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (gsmdec->srcpad));
|
2005-09-23 17:05:29 +00:00
|
|
|
|
2006-03-29 16:54:12 +00:00
|
|
|
/* now encode frame into the output buffer */
|
|
|
|
data = (gsm_byte *) gst_adapter_peek (gsmdec->adapter, 33);
|
|
|
|
if (gsm_decode (gsmdec->state, data,
|
|
|
|
(gsm_signal *) GST_BUFFER_DATA (outbuf)) < 0) {
|
|
|
|
/* invalid frame */
|
|
|
|
GST_WARNING_OBJECT (gsmdec, "tried to decode an invalid frame, skipping");
|
|
|
|
}
|
|
|
|
gst_adapter_flush (gsmdec->adapter, 33);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (gsmdec, "Pushing buffer of size %d ts %" GST_TIME_FORMAT,
|
2005-10-25 16:12:03 +00:00
|
|
|
GST_BUFFER_SIZE (outbuf),
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
|
2006-03-29 16:54:12 +00:00
|
|
|
|
|
|
|
/* push */
|
2005-10-26 15:45:11 +00:00
|
|
|
ret = gst_pad_push (gsmdec->srcpad, outbuf);
|
2005-09-23 17:05:29 +00:00
|
|
|
}
|
|
|
|
|
2005-10-26 15:45:11 +00:00
|
|
|
gst_object_unref (gsmdec);
|
2005-09-23 17:05:29 +00:00
|
|
|
|
2005-10-26 15:45:11 +00:00
|
|
|
return ret;
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|