2003-03-02 10:16:26 +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-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-03-02 10:16:26 +00:00
|
|
|
#include <string.h>
|
2004-04-20 23:03:28 +00:00
|
|
|
#include <stdlib.h>
|
2003-03-02 10:16:26 +00:00
|
|
|
#include "gstrtpL16enc.h"
|
|
|
|
|
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails gst_rtpL16enc_details = {
|
|
|
|
"RTP RAW Audio Encoder",
|
2003-11-16 22:02:22 +00:00
|
|
|
"Codec/Encoder/Network",
|
2004-05-13 21:27:14 +00:00
|
|
|
"Encodes Raw Audio into a RTP packet",
|
2003-11-02 22:04:36 +00:00
|
|
|
"Zeeshan Ali <zak147@yahoo.com>"
|
2003-03-02 10:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* RtpL16Enc signals and args */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
/* FILL ME */
|
2004-05-21 22:39:30 +00:00
|
|
|
ARG_0
|
2003-03-02 10:16:26 +00:00
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_rtpL16enc_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-raw-int, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"endianness = (int) BYTE_ORDER, "
|
|
|
|
"signed = (boolean) true, "
|
|
|
|
"width = (int) 16, "
|
|
|
|
"depth = (int) 16, "
|
|
|
|
"rate = (int) [ 1000, 48000 ], " "channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_rtpL16enc_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,
|
|
|
|
GST_STATIC_CAPS ("application/x-rtp")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
static void gst_rtpL16enc_class_init (GstRtpL16EncClass * klass);
|
2003-11-02 22:04:36 +00:00
|
|
|
static void gst_rtpL16enc_base_init (GstRtpL16EncClass * klass);
|
2003-03-02 10:16:26 +00:00
|
|
|
static void gst_rtpL16enc_init (GstRtpL16Enc * rtpL16enc);
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_rtpL16enc_chain (GstPad * pad, GstData * _data);
|
2003-03-02 10:16:26 +00:00
|
|
|
static void gst_rtpL16enc_set_property (GObject * object, guint prop_id,
|
2004-03-14 22:34:33 +00:00
|
|
|
const GValue * value, GParamSpec * pspec);
|
2003-03-02 10:16:26 +00:00
|
|
|
static void gst_rtpL16enc_get_property (GObject * object, guint prop_id,
|
2004-03-14 22:34:33 +00:00
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static GstPadLinkReturn gst_rtpL16enc_sinkconnect (GstPad * pad,
|
|
|
|
const GstCaps * caps);
|
2005-09-02 15:44:50 +00:00
|
|
|
static GstStateChangeReturn gst_rtpL16enc_change_state (GstElement * element,
|
|
|
|
GstStateChange transition);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GType
|
|
|
|
gst_rtpL16enc_get_type (void)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
|
|
|
static GType rtpL16enc_type = 0;
|
|
|
|
|
|
|
|
if (!rtpL16enc_type) {
|
|
|
|
static const GTypeInfo rtpL16enc_info = {
|
|
|
|
sizeof (GstRtpL16EncClass),
|
2003-11-02 22:04:36 +00:00
|
|
|
(GBaseInitFunc) gst_rtpL16enc_base_init,
|
2003-03-02 10:16:26 +00:00
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_rtpL16enc_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof (GstRtpL16Enc),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_rtpL16enc_init,
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
rtpL16enc_type =
|
2004-03-15 19:32:27 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstRtpL16Enc",
|
|
|
|
&rtpL16enc_info, 0);
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
return rtpL16enc_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 22:04:36 +00:00
|
|
|
static void
|
|
|
|
gst_rtpL16enc_base_init (GstRtpL16EncClass * 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_rtpL16enc_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_rtpL16enc_src_template));
|
2003-11-02 22:04:36 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_rtpL16enc_details);
|
|
|
|
}
|
|
|
|
|
2003-03-02 10:16:26 +00:00
|
|
|
static void
|
|
|
|
gst_rtpL16enc_class_init (GstRtpL16EncClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
|
|
|
|
gobject_class->set_property = gst_rtpL16enc_set_property;
|
|
|
|
gobject_class->get_property = gst_rtpL16enc_get_property;
|
|
|
|
|
|
|
|
gstelement_class->change_state = gst_rtpL16enc_change_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_rtpL16enc_init (GstRtpL16Enc * rtpL16enc)
|
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
rtpL16enc->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gst_rtpL16enc_sink_template), "sink");
|
|
|
|
rtpL16enc->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&gst_rtpL16enc_src_template), "src");
|
2003-03-02 10:16:26 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (rtpL16enc), rtpL16enc->sinkpad);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (rtpL16enc), rtpL16enc->srcpad);
|
|
|
|
gst_pad_set_chain_function (rtpL16enc->sinkpad, gst_rtpL16enc_chain);
|
|
|
|
gst_pad_set_link_function (rtpL16enc->sinkpad, gst_rtpL16enc_sinkconnect);
|
|
|
|
|
|
|
|
rtpL16enc->frequency = 44100;
|
|
|
|
rtpL16enc->channels = 2;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
rtpL16enc->next_time = 0;
|
2003-03-02 10:16:26 +00:00
|
|
|
rtpL16enc->time_interval = 0;
|
|
|
|
|
|
|
|
rtpL16enc->seq = 0;
|
|
|
|
rtpL16enc->ssrc = random ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadLinkReturn
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_rtpL16enc_sinkconnect (GstPad * pad, const GstCaps * caps)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
|
|
|
GstRtpL16Enc *rtpL16enc;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gboolean ret;
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
rtpL16enc = GST_RTP_L16_ENC (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
ret = gst_structure_get_int (structure, "rate", &rtpL16enc->frequency);
|
|
|
|
ret &= gst_structure_get_int (structure, "channels", &rtpL16enc->channels);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (!ret)
|
|
|
|
return GST_PAD_LINK_REFUSED;
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
/* Pre-calculate what we can */
|
2004-03-14 22:34:33 +00:00
|
|
|
rtpL16enc->time_interval =
|
|
|
|
GST_SECOND / (2 * rtpL16enc->channels * rtpL16enc->frequency);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
return GST_PAD_LINK_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_rtpL16enc_htons (GstBuffer * buf)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
2003-07-13 00:20:44 +00:00
|
|
|
gint16 *i, *len;
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
/* FIXME: is this code correct or even sane at all? */
|
2004-03-14 22:34:33 +00:00
|
|
|
i = (gint16 *) GST_BUFFER_DATA (buf);
|
2003-07-13 00:20:44 +00:00
|
|
|
len = i + GST_BUFFER_SIZE (buf) / sizeof (gint16 *);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
for (; i < len; i++) {
|
|
|
|
*i = g_htons (*i);
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_rtpL16enc_chain (GstPad * pad, GstData * _data)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2003-03-02 10:16:26 +00:00
|
|
|
GstRtpL16Enc *rtpL16enc;
|
|
|
|
GstBuffer *outbuf;
|
|
|
|
Rtp_Packet packet;
|
|
|
|
|
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
|
|
|
rtpL16enc = GST_RTP_L16_ENC (GST_OBJECT_PARENT (pad));
|
|
|
|
|
|
|
|
g_return_if_fail (rtpL16enc != NULL);
|
|
|
|
g_return_if_fail (GST_IS_RTP_L16_ENC (rtpL16enc));
|
|
|
|
|
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
GstEvent *event = GST_EVENT (buf);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_DEBUG ("discont");
|
|
|
|
rtpL16enc->next_time = 0;
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2003-03-02 10:16:26 +00:00
|
|
|
default:
|
2004-03-15 19:32:27 +00:00
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We only need the header */
|
|
|
|
packet = rtp_packet_new_allocate (0, 0, 0);
|
|
|
|
|
|
|
|
rtp_packet_set_csrc_count (packet, 0);
|
|
|
|
rtp_packet_set_extension (packet, 0);
|
|
|
|
rtp_packet_set_padding (packet, 0);
|
|
|
|
rtp_packet_set_version (packet, RTP_VERSION);
|
|
|
|
rtp_packet_set_marker (packet, 0);
|
|
|
|
rtp_packet_set_ssrc (packet, g_htonl (rtpL16enc->ssrc));
|
|
|
|
rtp_packet_set_seq (packet, g_htons (rtpL16enc->seq));
|
2004-03-14 22:34:33 +00:00
|
|
|
rtp_packet_set_timestamp (packet,
|
|
|
|
g_htonl ((guint32) rtpL16enc->next_time / GST_SECOND));
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
if (rtpL16enc->channels == 1) {
|
2004-03-14 22:34:33 +00:00
|
|
|
rtp_packet_set_payload_type (packet, (guint8) PAYLOAD_L16_MONO);
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
2004-03-14 22:34:33 +00:00
|
|
|
rtp_packet_set_payload_type (packet, (guint8) PAYLOAD_L16_STEREO);
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: According to RFC 1890, this is required, right? */
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_rtpL16enc_htons (buf);
|
2003-03-02 10:16:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
outbuf = gst_buffer_new ();
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_BUFFER_SIZE (outbuf) =
|
|
|
|
rtp_packet_get_packet_len (packet) + GST_BUFFER_SIZE (buf);
|
2003-03-02 10:16:26 +00:00
|
|
|
GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = rtpL16enc->next_time;
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
memcpy (GST_BUFFER_DATA (outbuf), packet->data,
|
|
|
|
rtp_packet_get_packet_len (packet));
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf) + rtp_packet_get_packet_len (packet),
|
|
|
|
GST_BUFFER_DATA (buf), GST_BUFFER_SIZE (buf));
|
2003-03-02 10:16:26 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_DEBUG ("gst_rtpL16enc_chain: pushing buffer of size %d",
|
|
|
|
GST_BUFFER_SIZE (outbuf));
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (rtpL16enc->srcpad, GST_DATA (outbuf));
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
++rtpL16enc->seq;
|
|
|
|
rtpL16enc->next_time += rtpL16enc->time_interval * GST_BUFFER_SIZE (buf);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-03-02 10:16:26 +00:00
|
|
|
rtp_packet_free (packet);
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_rtpL16enc_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
|
|
|
GstRtpL16Enc *rtpL16enc;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_RTP_L16_ENC (object));
|
|
|
|
rtpL16enc = GST_RTP_L16_ENC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_rtpL16enc_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
|
|
|
GstRtpL16Enc *rtpL16enc;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_RTP_L16_ENC (object));
|
|
|
|
rtpL16enc = GST_RTP_L16_ENC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
static GstStateChangeReturn
|
|
|
|
gst_rtpL16enc_change_state (GstElement * element, GstStateChange transition)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
|
|
|
GstRtpL16Enc *rtpL16enc;
|
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
g_return_val_if_fail (GST_IS_RTP_L16_ENC (element), GST_STATE_CHANGE_FAILURE);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
rtpL16enc = GST_RTP_L16_ENC (element);
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
GST_DEBUG ("state pending %d\n", GST_STATE_PENDING (element));
|
2003-03-02 10:16:26 +00:00
|
|
|
|
|
|
|
/* if going down into NULL state, close the file if it's open */
|
2005-09-02 15:44:50 +00:00
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_CHANGE_NULL_TO_READY:
|
2003-03-02 10:16:26 +00:00
|
|
|
break;
|
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
case GST_STATE_CHANGE_READY_TO_NULL:
|
2003-03-02 10:16:26 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we haven't failed already, give the parent class a chance to ;-) */
|
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
2005-09-02 15:44:50 +00:00
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
2003-03-02 10:16:26 +00:00
|
|
|
|
2005-09-02 15:44:50 +00:00
|
|
|
return GST_STATE_CHANGE_SUCCESS;
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2003-11-02 22:04:36 +00:00
|
|
|
gst_rtpL16enc_plugin_init (GstPlugin * plugin)
|
2003-03-02 10:16:26 +00:00
|
|
|
{
|
2003-11-02 22:04:36 +00:00
|
|
|
return gst_element_register (plugin, "rtpL16enc",
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_RTP_L16_ENC);
|
2003-03-02 10:16:26 +00:00
|
|
|
}
|