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 "gstgsmenc.h"
|
|
|
|
|
2003-11-01 16:35:25 +00:00
|
|
|
static GstPadTemplate *gsmenc_src_template, *gsmenc_sink_template;
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
/* elementfactory information */
|
|
|
|
GstElementDetails gst_gsmenc_details = {
|
|
|
|
"gsm audio encoder",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Codec/Audio/Encoder",
|
2001-12-23 14:29:43 +00:00
|
|
|
".gsm",
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>",
|
|
|
|
};
|
|
|
|
|
|
|
|
/* GSMEnc signals and args */
|
|
|
|
enum {
|
|
|
|
FRAME_ENCODED,
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
2003-11-01 16:35:25 +00:00
|
|
|
static void gst_gsmenc_base_init (gpointer g_class);
|
2002-01-13 22:27:25 +00:00
|
|
|
static void gst_gsmenc_class_init (GstGSMEnc *klass);
|
|
|
|
static void gst_gsmenc_init (GstGSMEnc *gsmenc);
|
|
|
|
|
2003-10-08 16:08:19 +00:00
|
|
|
static void gst_gsmenc_chain (GstPad *pad,GstData *_data);
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
static guint gst_gsmenc_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_gsmenc_get_type (void)
|
|
|
|
{
|
|
|
|
static GType gsmenc_type = 0;
|
|
|
|
|
|
|
|
if (!gsmenc_type) {
|
|
|
|
static const GTypeInfo gsmenc_info = {
|
|
|
|
sizeof (GstGSMEncClass),
|
2003-11-01 16:35:25 +00:00
|
|
|
gst_gsmenc_base_init,
|
2001-12-23 14:29:43 +00:00
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_gsmenc_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstGSMEnc),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_gsmenc_init,
|
|
|
|
};
|
|
|
|
gsmenc_type = g_type_register_static (GST_TYPE_ELEMENT, "GstGSMEnc", &gsmenc_info, 0);
|
|
|
|
}
|
|
|
|
return gsmenc_type;
|
|
|
|
}
|
|
|
|
|
2003-11-01 16:35:25 +00:00
|
|
|
GST_CAPS_FACTORY (gsm_caps_factory,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"gsm_gsm",
|
|
|
|
"audio/x-gsm",
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1000, 48000),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
GST_CAPS_FACTORY (raw_caps_factory,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"gsm_raw",
|
|
|
|
"audio/x-raw-int",
|
|
|
|
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
|
|
"signed", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (1000, 48000),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gsmenc_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
GstCaps *raw_caps, *gsm_caps;
|
|
|
|
|
|
|
|
raw_caps = GST_CAPS_GET (raw_caps_factory);
|
|
|
|
gsm_caps = GST_CAPS_GET (gsm_caps_factory);
|
|
|
|
|
|
|
|
gsmenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
raw_caps, NULL);
|
|
|
|
gsmenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
gsm_caps, NULL);
|
|
|
|
gst_element_class_add_pad_template (element_class, gsmenc_sink_template);
|
|
|
|
gst_element_class_add_pad_template (element_class, gsmenc_src_template);
|
|
|
|
gst_element_class_set_details (element_class, &gst_gsmenc_details);
|
|
|
|
}
|
|
|
|
|
2001-12-23 14:29:43 +00:00
|
|
|
static void
|
|
|
|
gst_gsmenc_class_init (GstGSMEnc *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass*) klass;
|
|
|
|
gstelement_class = (GstElementClass*) klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
|
|
|
|
gst_gsmenc_signals[FRAME_ENCODED] =
|
|
|
|
g_signal_new ("frame_encoded", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GstGSMEncClass, frame_encoded), NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gsmenc_init (GstGSMEnc *gsmenc)
|
|
|
|
{
|
|
|
|
/* create the sink and src pads */
|
|
|
|
gsmenc->sinkpad = gst_pad_new_from_template (gsmenc_sink_template, "sink");
|
|
|
|
gst_element_add_pad (GST_ELEMENT (gsmenc), gsmenc->sinkpad);
|
|
|
|
gst_pad_set_chain_function (gsmenc->sinkpad, gst_gsmenc_chain);
|
2003-01-10 10:22:25 +00:00
|
|
|
gst_pad_set_link_function (gsmenc->sinkpad, gst_gsmenc_sinkconnect);
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
gsmenc->srcpad = gst_pad_new_from_template (gsmenc_src_template, "src");
|
|
|
|
gst_element_add_pad (GST_ELEMENT (gsmenc), gsmenc->srcpad);
|
|
|
|
|
|
|
|
gsmenc->state = gsm_create ();
|
|
|
|
gsmenc->bufsize = 0;
|
|
|
|
gsmenc->next_ts = 0;
|
|
|
|
gsmenc->rate = 8000;
|
|
|
|
}
|
|
|
|
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn
|
2002-01-13 22:27:25 +00:00
|
|
|
gst_gsmenc_sinkconnect (GstPad *pad, GstCaps *caps)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
|
|
|
GstGSMEnc *gsmenc;
|
|
|
|
|
|
|
|
gsmenc = GST_GSMENC (gst_pad_get_parent (pad));
|
|
|
|
|
2002-01-13 22:27:25 +00:00
|
|
|
if (!GST_CAPS_IS_FIXED (caps))
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_DELAYED;
|
2002-01-13 22:27:25 +00:00
|
|
|
|
2002-03-30 17:06:26 +00:00
|
|
|
gst_caps_get_int (caps, "rate", &gsmenc->rate);
|
2002-01-13 22:27:25 +00:00
|
|
|
if (gst_pad_try_set_caps (gsmenc->srcpad, GST_CAPS_NEW (
|
2001-12-23 14:29:43 +00:00
|
|
|
"gsm_gsm",
|
|
|
|
"audio/x-gsm",
|
2003-07-06 20:49:52 +00:00
|
|
|
"rate", GST_PROPS_INT (gsmenc->rate),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
2002-09-10 09:31:40 +00:00
|
|
|
)) > 0)
|
2002-01-13 22:27:25 +00:00
|
|
|
{
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2002-01-13 22:27:25 +00:00
|
|
|
}
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_REFUSED;
|
2002-01-13 22:27:25 +00:00
|
|
|
|
2001-12-23 14:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_gsmenc_chain (GstPad *pad, GstData *_data)
|
2001-12-23 14:29:43 +00:00
|
|
|
{
|
2003-10-08 16:08:19 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-12-23 14:29:43 +00:00
|
|
|
GstGSMEnc *gsmenc;
|
|
|
|
gsm_signal *data;
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
|
|
|
gsmenc = GST_GSMENC (GST_OBJECT_PARENT (pad));
|
|
|
|
|
2001-12-29 12:38:55 +00:00
|
|
|
if (!GST_PAD_CAPS (gsmenc->srcpad)) {
|
2002-01-13 22:27:25 +00:00
|
|
|
gst_pad_try_set_caps (gsmenc->srcpad,
|
2001-12-29 12:38:55 +00:00
|
|
|
GST_CAPS_NEW (
|
|
|
|
"gsm_enc",
|
|
|
|
"audio/x-gsm",
|
2003-07-06 20:49:52 +00:00
|
|
|
"rate", GST_PROPS_INT (gsmenc->rate),
|
|
|
|
"channels", GST_PROPS_INT (1)
|
2001-12-29 12:38:55 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2001-12-23 14:29:43 +00:00
|
|
|
data = (gsm_signal*) GST_BUFFER_DATA (buf);
|
|
|
|
size = GST_BUFFER_SIZE (buf) / sizeof (gsm_signal);
|
|
|
|
|
|
|
|
if (gsmenc->bufsize && (gsmenc->bufsize + size >= 160)) {
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
memcpy (gsmenc->buffer + gsmenc->bufsize, data, (160 - gsmenc->bufsize) * sizeof (gsm_signal));
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new ();
|
|
|
|
GST_BUFFER_DATA (outbuf) = g_malloc (33 * sizeof (gsm_byte));
|
|
|
|
GST_BUFFER_SIZE (outbuf) = 33 * sizeof (gsm_byte);
|
|
|
|
|
|
|
|
gsm_encode (gsmenc->state, gsmenc->buffer, (gsm_byte *) GST_BUFFER_DATA (outbuf));
|
|
|
|
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = gsmenc->next_ts;
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (gsmenc->srcpad, GST_DATA (outbuf));
|
2001-12-23 14:29:43 +00:00
|
|
|
gsmenc->next_ts += (160.0 / gsmenc->rate) * 1000000;
|
|
|
|
|
|
|
|
size -= (160 - gsmenc->bufsize);
|
|
|
|
data += (160 - gsmenc->bufsize);
|
|
|
|
gsmenc->bufsize = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (size >= 160) {
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new ();
|
|
|
|
GST_BUFFER_DATA (outbuf) = g_malloc (33 * sizeof (gsm_byte));
|
|
|
|
GST_BUFFER_SIZE (outbuf) = 33 * sizeof (gsm_byte);
|
|
|
|
|
|
|
|
gsm_encode (gsmenc->state, data, (gsm_byte *) GST_BUFFER_DATA (outbuf));
|
|
|
|
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = gsmenc->next_ts;
|
2003-10-08 16:08:19 +00:00
|
|
|
gst_pad_push (gsmenc->srcpad, GST_DATA (outbuf));
|
2002-07-05 19:30:20 +00:00
|
|
|
gsmenc->next_ts += (160 / gsmenc->rate) * GST_SECOND;
|
2001-12-23 14:29:43 +00:00
|
|
|
|
|
|
|
size -= 160;
|
|
|
|
data += 160;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size) {
|
|
|
|
memcpy (gsmenc->buffer + gsmenc->bufsize, data, size * sizeof (gsm_signal));
|
|
|
|
gsmenc->bufsize += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_buffer_unref(buf);
|
|
|
|
}
|