2003-07-13 00:20:44 +00:00
|
|
|
/* GStreamer
|
|
|
|
* 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-07-15 13:17:20 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2004-04-20 23:03:28 +00:00
|
|
|
#include <stdlib.h>
|
2003-07-13 00:20:44 +00:00
|
|
|
#include <string.h>
|
2005-09-15 13:57:56 +00:00
|
|
|
#include <gst/rtp/gstrtpbuffer.h>
|
|
|
|
|
2003-07-13 00:20:44 +00:00
|
|
|
#include "gstrtpgsmenc.h"
|
|
|
|
|
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails gst_rtpgsmenc_details = {
|
|
|
|
"RTP GSM Audio Encoder",
|
2003-11-16 22:02:22 +00:00
|
|
|
"Codec/Encoder/Network",
|
2004-05-13 21:27:14 +00:00
|
|
|
"Encodes GSM audio into a RTP packet",
|
2003-11-02 22:04:36 +00:00
|
|
|
"Zeeshan Ali <zak147@yahoo.com>"
|
2003-07-13 00:20:44 +00:00
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_rtpgsmenc_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,
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-gsm, " "rate = (int) [ 1000, 48000 ]")
|
|
|
|
);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_rtpgsmenc_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,
|
2005-09-15 13:57:56 +00:00
|
|
|
GST_STATIC_CAPS ("application/x-rtp, "
|
|
|
|
"media = (string) \"audio\", "
|
|
|
|
"payload = (int) [ 96, 255 ], "
|
2005-09-20 10:51:51 +00:00
|
|
|
"clock-rate = (int) 8000, " "encoding-name = (string) \"GSM\"")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2003-07-13 00:20:44 +00:00
|
|
|
|
|
|
|
static void gst_rtpgsmenc_class_init (GstRtpGSMEncClass * klass);
|
2003-11-02 22:04:36 +00:00
|
|
|
static void gst_rtpgsmenc_base_init (GstRtpGSMEncClass * klass);
|
2003-07-13 00:20:44 +00:00
|
|
|
static void gst_rtpgsmenc_init (GstRtpGSMEnc * rtpgsmenc);
|
2005-09-15 13:57:56 +00:00
|
|
|
|
|
|
|
static gboolean gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload,
|
|
|
|
GstCaps * caps);
|
|
|
|
static GstFlowReturn gst_rtpgsmenc_handle_buffer (GstBaseRTPPayload * payload,
|
|
|
|
GstBuffer * buffer);
|
|
|
|
|
|
|
|
static GstBaseRTPPayloadClass *parent_class = NULL;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GType
|
|
|
|
gst_rtpgsmenc_get_type (void)
|
2003-07-13 00:20:44 +00:00
|
|
|
{
|
|
|
|
static GType rtpgsmenc_type = 0;
|
|
|
|
|
|
|
|
if (!rtpgsmenc_type) {
|
|
|
|
static const GTypeInfo rtpgsmenc_info = {
|
|
|
|
sizeof (GstRtpGSMEncClass),
|
2003-11-02 22:04:36 +00:00
|
|
|
(GBaseInitFunc) gst_rtpgsmenc_base_init,
|
2003-07-13 00:20:44 +00:00
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_rtpgsmenc_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstRtpGSMEnc),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_rtpgsmenc_init,
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
rtpgsmenc_type =
|
2005-09-15 13:57:56 +00:00
|
|
|
g_type_register_static (GST_TYPE_BASE_RTP_PAYLOAD, "GstRtpGSMEnc",
|
2004-03-15 19:32:27 +00:00
|
|
|
&rtpgsmenc_info, 0);
|
2003-07-13 00:20:44 +00:00
|
|
|
}
|
|
|
|
return rtpgsmenc_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 22:04:36 +00:00
|
|
|
static void
|
|
|
|
gst_rtpgsmenc_base_init (GstRtpGSMEncClass * klass)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&gst_rtpgsmenc_sink_template));
|
2003-11-02 22:04:36 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&gst_rtpgsmenc_src_template));
|
2003-11-02 22:04:36 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_rtpgsmenc_details);
|
|
|
|
}
|
|
|
|
|
2003-07-13 00:20:44 +00:00
|
|
|
static void
|
|
|
|
gst_rtpgsmenc_class_init (GstRtpGSMEncClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
2005-09-15 13:57:56 +00:00
|
|
|
GstBaseRTPPayloadClass *gstbasertppayload_class;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2005-09-15 13:57:56 +00:00
|
|
|
gstbasertppayload_class = (GstBaseRTPPayloadClass *) klass;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_BASE_RTP_PAYLOAD);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
gstbasertppayload_class->set_caps = gst_rtpgsmenc_setcaps;
|
|
|
|
gstbasertppayload_class->handle_buffer = gst_rtpgsmenc_handle_buffer;
|
2003-07-13 00:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtpgsmenc_init (GstRtpGSMEnc * rtpgsmenc)
|
|
|
|
{
|
|
|
|
rtpgsmenc->frequency = 8000;
|
|
|
|
}
|
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
static gboolean
|
|
|
|
gst_rtpgsmenc_setcaps (GstBaseRTPPayload * payload, GstCaps * caps)
|
2003-07-13 00:20:44 +00:00
|
|
|
{
|
|
|
|
GstRtpGSMEnc *rtpgsmenc;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gboolean ret;
|
2005-09-15 13:57:56 +00:00
|
|
|
GstCaps *srccaps;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
rtpgsmenc = GST_RTP_GSM_ENC (payload);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
ret = gst_structure_get_int (structure, "rate", &rtpgsmenc->frequency);
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!ret)
|
2005-09-15 13:57:56 +00:00
|
|
|
return FALSE;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
srccaps = gst_caps_new_simple ("application/x-rtp", NULL);
|
|
|
|
gst_pad_set_caps (GST_BASE_RTP_PAYLOAD_SRCPAD (rtpgsmenc), srccaps);
|
|
|
|
gst_caps_unref (srccaps);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
return TRUE;
|
2003-07-13 00:20:44 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_rtpgsmenc_handle_buffer (GstBaseRTPPayload * basepayload,
|
|
|
|
GstBuffer * buffer)
|
2003-07-13 00:20:44 +00:00
|
|
|
{
|
|
|
|
GstRtpGSMEnc *rtpgsmenc;
|
2005-09-15 13:57:56 +00:00
|
|
|
guint size, payload_len;
|
2003-07-13 00:20:44 +00:00
|
|
|
GstBuffer *outbuf;
|
2005-09-15 13:57:56 +00:00
|
|
|
guint8 *payload, *data;
|
|
|
|
GstClockTime timestamp;
|
|
|
|
GstFlowReturn ret;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
rtpgsmenc = GST_RTP_GSM_ENC (basepayload);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
size = GST_BUFFER_SIZE (buffer);
|
|
|
|
timestamp = GST_BUFFER_TIMESTAMP (buffer);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
/* FIXME, only one GSM frame per RTP packet for now */
|
|
|
|
payload_len = size;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
outbuf = gst_rtpbuffer_new_allocate (payload_len, 0, 0);
|
|
|
|
/* FIXME, assert for now */
|
|
|
|
g_assert (GST_BUFFER_SIZE (outbuf) < GST_BASE_RTP_PAYLOAD_MTU (rtpgsmenc));
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
gst_rtpbuffer_set_timestamp (outbuf, timestamp * 8000 / GST_SECOND);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
/* copy timestamp */
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = timestamp;
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
/* get payload */
|
|
|
|
payload = gst_rtpbuffer_get_payload (outbuf);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
data = GST_BUFFER_DATA (buffer);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
/* copy data in payload */
|
|
|
|
memcpy (&payload[0], data, size);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
gst_buffer_unref (buffer);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
GST_DEBUG ("gst_rtpgsmenc_chain: pushing buffer of size %d",
|
|
|
|
GST_BUFFER_SIZE (outbuf));
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
ret = gst_basertppayload_push (basepayload, outbuf);
|
2003-07-13 00:20:44 +00:00
|
|
|
|
2005-09-15 13:57:56 +00:00
|
|
|
return ret;
|
2003-07-13 00:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2003-11-02 22:04:36 +00:00
|
|
|
gst_rtpgsmenc_plugin_init (GstPlugin * plugin)
|
2003-07-13 00:20:44 +00:00
|
|
|
{
|
2003-11-02 22:04:36 +00:00
|
|
|
return gst_element_register (plugin, "rtpgsmenc",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_RTP_GSM_ENC);
|
2003-07-13 00:20:44 +00:00
|
|
|
}
|