summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtpvrawdepay.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtp/gstrtpvrawdepay.c')
-rw-r--r--gst/rtp/gstrtpvrawdepay.c500
1 files changed, 500 insertions, 0 deletions
diff --git a/gst/rtp/gstrtpvrawdepay.c b/gst/rtp/gstrtpvrawdepay.c
new file mode 100644
index 00000000..6e975ddc
--- /dev/null
+++ b/gst/rtp/gstrtpvrawdepay.c
@@ -0,0 +1,500 @@
+/* GStreamer
+ * Copyright (C) <2008> Wim Taymans <wim.taymans@gmail.com>
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <gst/rtp/gstrtpbuffer.h>
+
+#include <string.h>
+#include "gstrtpvrawdepay.h"
+
+GST_DEBUG_CATEGORY_STATIC (rtpvrawdepay_debug);
+#define GST_CAT_DEFAULT (rtpvrawdepay_debug)
+
+/* elementfactory information */
+static const GstElementDetails gst_rtp_vrawdepay_details =
+GST_ELEMENT_DETAILS ("RTP packet depayloader",
+ "Codec/Depayloader/Network",
+ "Extracts raw video from RTP packets (RFC 4175)",
+ "Wim Taymans <wim.taymans@gmail.com>");
+
+static GstStaticPadTemplate gst_rtp_vraw_depay_src_template =
+ GST_STATIC_PAD_TEMPLATE ("src",
+ GST_PAD_SRC,
+ GST_PAD_ALWAYS,
+ GST_STATIC_CAPS ("video/x-raw-rgb; video/x-raw-yuv")
+ );
+
+static GstStaticPadTemplate gst_rtp_vraw_depay_sink_template =
+GST_STATIC_PAD_TEMPLATE ("sink",
+ GST_PAD_SINK,
+ GST_PAD_ALWAYS,
+ GST_STATIC_CAPS ("application/x-rtp, "
+ "media = (string) \"video\", "
+ "payload = (int) " GST_RTP_PAYLOAD_DYNAMIC_STRING ", "
+ "clock-rate = (int) 90000, " "encoding-name = (string) \"RAW\"")
+ );
+
+GST_BOILERPLATE (GstRtpVRawDepay, gst_rtp_vraw_depay, GstBaseRTPDepayload,
+ GST_TYPE_BASE_RTP_DEPAYLOAD);
+
+static gboolean gst_rtp_vraw_depay_setcaps (GstBaseRTPDepayload * depayload,
+ GstCaps * caps);
+static GstBuffer *gst_rtp_vraw_depay_process (GstBaseRTPDepayload * depayload,
+ GstBuffer * buf);
+
+static GstStateChangeReturn gst_rtp_vraw_depay_change_state (GstElement *
+ element, GstStateChange transition);
+
+static void
+gst_rtp_vraw_depay_base_init (gpointer klass)
+{
+ GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
+
+ gst_element_class_add_pad_template (element_class,
+ gst_static_pad_template_get (&gst_rtp_vraw_depay_src_template));
+ gst_element_class_add_pad_template (element_class,
+ gst_static_pad_template_get (&gst_rtp_vraw_depay_sink_template));
+
+ gst_element_class_set_details (element_class, &gst_rtp_vrawdepay_details);
+}
+
+static void
+gst_rtp_vraw_depay_class_init (GstRtpVRawDepayClass * klass)
+{
+ GObjectClass *gobject_class;
+ GstElementClass *gstelement_class;
+ GstBaseRTPDepayloadClass *gstbasertpdepayload_class;
+
+ gobject_class = (GObjectClass *) klass;
+ gstelement_class = (GstElementClass *) klass;
+ gstbasertpdepayload_class = (GstBaseRTPDepayloadClass *) klass;
+
+ parent_class = g_type_class_peek_parent (klass);
+
+ gstelement_class->change_state = gst_rtp_vraw_depay_change_state;
+
+ gstbasertpdepayload_class->set_caps = gst_rtp_vraw_depay_setcaps;
+ gstbasertpdepayload_class->process = gst_rtp_vraw_depay_process;
+
+ GST_DEBUG_CATEGORY_INIT (rtpvrawdepay_debug, "rtpvrawdepay", 0,
+ "raw video RTP Depayloader");
+}
+
+static void
+gst_rtp_vraw_depay_init (GstRtpVRawDepay * rtpvrawdepay,
+ GstRtpVRawDepayClass * klass)
+{
+ /* needed because of GST_BOILERPLATE */
+}
+
+static gboolean
+gst_rtp_vraw_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
+{
+ GstStructure *structure;
+ GstRtpVRawDepay *rtpvrawdepay;
+ gint clock_rate = 90000; /* default */
+ const gchar *str, *type;
+ gint format, width, height, pgroup, xinc, yinc;
+ guint ystride, uvstride, yp, up, vp, outsize;
+ GstCaps *srccaps;
+ guint32 fourcc = 0;
+
+ rtpvrawdepay = GST_RTP_VRAW_DEPAY (depayload);
+
+ structure = gst_caps_get_structure (caps, 0);
+
+ yp = up = vp = uvstride = 0;
+ xinc = yinc = 1;
+
+ gst_structure_get_int (structure, "clock-rate", &clock_rate);
+ depayload->clock_rate = clock_rate;
+
+ if (!(str = gst_structure_get_string (structure, "width")))
+ goto no_width;
+ width = atoi (str);
+
+ if (!(str = gst_structure_get_string (structure, "height")))
+ goto no_height;
+ height = atoi (str);
+
+ if (!(str = gst_structure_get_string (structure, "sampling")))
+ goto no_sampling;
+
+ if (!strcmp (str, "RGB")) {
+ format = GST_VIDEO_FORMAT_RGB;
+ pgroup = 3;
+ ystride = GST_ROUND_UP_4 (width * 3);
+ outsize = ystride * height;
+ type = "video/x-raw-rgb";
+ } else if (!strcmp (str, "RGBA")) {
+ format = GST_VIDEO_FORMAT_RGBA;
+ pgroup = 4;
+ ystride = width * 4;
+ outsize = ystride * height;
+ type = "video/x-raw-rgb";
+ } else if (!strcmp (str, "BGR")) {
+ format = GST_VIDEO_FORMAT_BGR;
+ pgroup = 3;
+ ystride = GST_ROUND_UP_4 (width * 3);
+ outsize = ystride * height;
+ type = "video/x-raw-rgb";
+ } else if (!strcmp (str, "BGRA")) {
+ format = GST_VIDEO_FORMAT_BGRA;
+ pgroup = 4;
+ ystride = width * 4;
+ outsize = ystride * height;
+ type = "video/x-raw-rgb";
+ } else if (!strcmp (str, "YCbCr-4:4:4")) {
+ format = GST_VIDEO_FORMAT_AYUV;
+ pgroup = 3;
+ ystride = width * 4;
+ outsize = ystride * height;
+ type = "video/x-raw-yuv";
+ fourcc = GST_MAKE_FOURCC ('A', 'Y', 'U', 'V');
+ } else if (!strcmp (str, "YCbCr-4:2:2")) {
+ format = GST_VIDEO_FORMAT_UYVY;
+ pgroup = 4;
+ ystride = GST_ROUND_UP_2 (width) * 2;
+ outsize = ystride * height;
+ type = "video/x-raw-yuv";
+ fourcc = GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y');
+ xinc = 2;
+ } else if (!strcmp (str, "YCbCr-4:2:0")) {
+ format = GST_VIDEO_FORMAT_I420;
+ pgroup = 6;
+ ystride = GST_ROUND_UP_4 (width);
+ uvstride = GST_ROUND_UP_8 (width) / 2;
+ up = ystride * GST_ROUND_UP_2 (height);
+ vp = up + uvstride * GST_ROUND_UP_2 (height) / 2;
+ outsize = vp + uvstride * GST_ROUND_UP_2 (height) / 2;
+ type = "video/x-raw-yuv";
+ fourcc = GST_MAKE_FOURCC ('I', '4', '2', '0');
+ xinc = yinc = 2;
+ } else if (!strcmp (str, "YCbCr-4:1:1")) {
+ format = GST_VIDEO_FORMAT_Y41B;
+ pgroup = 6;
+ ystride = GST_ROUND_UP_4 (width);
+ uvstride = GST_ROUND_UP_8 (width) / 4;
+ up = ystride * height;
+ vp = up + uvstride * height;
+ outsize = vp + uvstride * height;
+ type = "video/x-raw-yuv";
+ fourcc = GST_MAKE_FOURCC ('Y', '4', '1', 'B');
+ xinc = 4;
+ } else
+ goto unknown_format;
+
+ rtpvrawdepay->width = width;
+ rtpvrawdepay->height = height;
+ rtpvrawdepay->format = format;
+ rtpvrawdepay->yp = yp;
+ rtpvrawdepay->up = up;
+ rtpvrawdepay->vp = vp;
+ rtpvrawdepay->pgroup = pgroup;
+ rtpvrawdepay->xinc = xinc;
+ rtpvrawdepay->yinc = yinc;
+ rtpvrawdepay->ystride = ystride;
+ rtpvrawdepay->uvstride = uvstride;
+ rtpvrawdepay->outsize = outsize;
+
+ srccaps = gst_caps_new_simple (type,
+ "width", G_TYPE_INT, width,
+ "height", G_TYPE_INT, height,
+ "format", GST_TYPE_FOURCC, fourcc,
+ "framerate", GST_TYPE_FRACTION, 0, 1, NULL);
+
+ gst_pad_set_caps (GST_BASE_RTP_DEPAYLOAD_SRCPAD (depayload), srccaps);
+ gst_caps_unref (srccaps);
+
+ GST_DEBUG_OBJECT (depayload, "width %d, height %d, format %d", width, height,
+ format);
+ GST_DEBUG_OBJECT (depayload, "yp %d, up %d, vp %d", yp, up, vp);
+ GST_DEBUG_OBJECT (depayload, "pgroup %d, ystride %d, uvstride %d", pgroup,
+ ystride, uvstride);
+ GST_DEBUG_OBJECT (depayload, "outsize %u", outsize);
+
+ return TRUE;
+
+ /* ERRORS */
+no_width:
+ {
+ GST_ERROR_OBJECT (depayload, "no width specified");
+ return FALSE;
+ }
+no_height:
+ {
+ GST_ERROR_OBJECT (depayload, "no height specified");
+ return FALSE;
+ }
+no_sampling:
+ {
+ GST_ERROR_OBJECT (depayload, "no sampling specified");
+ return FALSE;
+ }
+unknown_format:
+ {
+ GST_ERROR_OBJECT (depayload, "unknown sampling format '%s'", str);
+ return FALSE;
+ }
+}
+
+static GstBuffer *
+gst_rtp_vraw_depay_process (GstBaseRTPDepayload * depayload, GstBuffer * buf)
+{
+ GstRtpVRawDepay *rtpvrawdepay;
+ gint payload_len;
+ guint8 *payload, *data, *yp, *up, *vp, *headers;
+ guint32 timestamp;
+ guint cont, ystride, uvstride, pgroup;
+
+ rtpvrawdepay = GST_RTP_VRAW_DEPAY (depayload);
+
+ payload_len = gst_rtp_buffer_get_payload_len (buf);
+
+ timestamp = gst_rtp_buffer_get_timestamp (buf);
+
+ if (timestamp != rtpvrawdepay->timestamp || rtpvrawdepay->outbuf == NULL) {
+ GstBuffer *outbuf;
+ GstFlowReturn ret;
+
+ GST_LOG_OBJECT (depayload, "new frame with timestamp %u", timestamp);
+ /* new timestamp, flush old buffer and create new output buffer */
+ if (rtpvrawdepay->outbuf) {
+ gst_base_rtp_depayload_push_ts (depayload, rtpvrawdepay->timestamp,
+ rtpvrawdepay->outbuf);
+ rtpvrawdepay->outbuf = NULL;
+ }
+
+ ret = gst_pad_alloc_buffer (depayload->srcpad, -1, rtpvrawdepay->outsize,
+ GST_PAD_CAPS (depayload->srcpad), &outbuf);
+ if (ret != GST_FLOW_OK)
+ goto alloc_failed;
+
+ /* clear timestamp from alloc... */
+ GST_BUFFER_TIMESTAMP (outbuf) = -1;
+
+ rtpvrawdepay->outbuf = outbuf;
+ rtpvrawdepay->timestamp = timestamp;
+ }
+
+ data = GST_BUFFER_DATA (rtpvrawdepay->outbuf);
+
+ /* get pointer and strides of the planes */
+ yp = data + rtpvrawdepay->yp;
+ up = data + rtpvrawdepay->up;
+ vp = data + rtpvrawdepay->vp;
+
+ ystride = rtpvrawdepay->ystride;
+ uvstride = rtpvrawdepay->uvstride;
+ pgroup = rtpvrawdepay->pgroup;
+
+ payload = gst_rtp_buffer_get_payload (buf);
+
+ /* skip extended seqnum */
+ payload++;
+ payload++;
+
+ /* remember header position */
+ headers = payload;
+
+ /* find data start */
+ do {
+ cont = payload[4] & 0x80;
+ payload += 6;
+ } while (cont);
+
+ while (TRUE) {
+ guint length, line, offs;
+ guint8 *datap;
+
+ /* read length and cont */
+ length = (headers[0] << 8) | headers[1];
+ line = ((headers[2] & 0x7f) << 8) | headers[3];
+ offs = ((headers[4] & 0x7f) << 8) | headers[5];
+ cont = headers[4] & 0x80;
+ headers += 6;
+
+ /* sanity check */
+ if (line > (rtpvrawdepay->height - rtpvrawdepay->yinc))
+ continue;
+ if (offs > (rtpvrawdepay->width - rtpvrawdepay->xinc))
+ continue;
+
+ GST_LOG_OBJECT (depayload, "writing length %u, line %u, offset %u", length,
+ line, offs);
+
+ switch (rtpvrawdepay->format) {
+ case GST_VIDEO_FORMAT_RGB:
+ case GST_VIDEO_FORMAT_RGBA:
+ case GST_VIDEO_FORMAT_BGR:
+ case GST_VIDEO_FORMAT_BGRA:
+ case GST_VIDEO_FORMAT_UYVY:
+ /* samples are packed just like gstreamer packs them */
+ offs /= rtpvrawdepay->xinc;
+ datap = yp + (line * ystride) + (offs * pgroup);
+ memcpy (datap, payload, length);
+ payload += length;
+ break;
+ case GST_VIDEO_FORMAT_AYUV:
+ {
+ gint i;
+
+ datap = yp + (line * ystride) + (offs * 4);
+
+ /* samples are packed in order Cb-Y-Cr for both interlaced and
+ * progressive frames */
+ for (i = 0; i < length; i += pgroup) {
+ *datap++ = 0;
+ *datap++ = payload[1];
+ *datap++ = payload[0];
+ *datap++ = payload[2];
+ payload += pgroup;
+ }
+ break;
+ }
+ case GST_VIDEO_FORMAT_I420:
+ {
+ gint i;
+ guint uvoff;
+ guint8 *yd1p, *yd2p, *udp, *vdp;
+
+ yd1p = yp + (line * ystride) + (offs);
+ yd2p = yd1p + ystride;
+ uvoff =
+ (line / rtpvrawdepay->yinc * uvstride) +
+ (offs / rtpvrawdepay->xinc);
+ udp = up + uvoff;
+ vdp = vp + uvoff;
+
+ /* line 0/1: Y00-Y01-Y10-Y11-Cb00-Cr00 Y02-Y03-Y12-Y13-Cb01-Cr01 ... */
+ for (i = 0; i < length; i += pgroup) {
+ *yd1p++ = payload[0];
+ *yd1p++ = payload[1];
+ *yd2p++ = payload[2];
+ *yd2p++ = payload[3];
+ *udp++ = payload[4];
+ *vdp++ = payload[5];
+ payload += pgroup;
+ }
+ break;
+ }
+ case GST_VIDEO_FORMAT_Y41B:
+ {
+ gint i;
+ guint uvoff;
+ guint8 *ydp, *udp, *vdp;
+
+ ydp = yp + (line * ystride) + (offs);
+ uvoff =
+ (line / rtpvrawdepay->yinc * uvstride) +
+ (offs / rtpvrawdepay->xinc);
+ udp = up + uvoff;
+ vdp = vp + uvoff;
+
+ /* Samples are packed in order Cb0-Y0-Y1-Cr0-Y2-Y3 for both interlaced
+ * and progressive scan lines */
+ for (i = 0; i < length; i += pgroup) {
+ *udp++ = payload[0];
+ *ydp++ = payload[1];
+ *ydp++ = payload[2];
+ *vdp++ = payload[3];
+ *ydp++ = payload[4];
+ *ydp++ = payload[5];
+ payload += pgroup;
+ }
+ break;
+ }
+ default:
+ goto unknown_sampling;
+ }
+
+ if (!cont)
+ break;
+ }
+
+ if (gst_rtp_buffer_get_marker (buf)) {
+ GST_LOG_OBJECT (depayload, "marker, flushing frame");
+ if (rtpvrawdepay->outbuf) {
+ gst_base_rtp_depayload_push_ts (depayload, timestamp,
+ rtpvrawdepay->outbuf);
+ rtpvrawdepay->outbuf = NULL;
+ }
+ rtpvrawdepay->timestamp = -1;
+ }
+ return NULL;
+
+ /* ERRORS */
+unknown_sampling:
+ {
+ GST_ELEMENT_ERROR (depayload, STREAM, FORMAT,
+ (NULL), ("unimplemented sampling"));
+ return NULL;
+ }
+alloc_failed:
+ {
+ GST_DEBUG_OBJECT (depayload, "failed to alloc output buffer");
+ return NULL;
+ }
+}
+
+static GstStateChangeReturn
+gst_rtp_vraw_depay_change_state (GstElement * element,
+ GstStateChange transition)
+{
+ GstRtpVRawDepay *rtpvrawdepay;
+ GstStateChangeReturn ret;
+
+ rtpvrawdepay = GST_RTP_VRAW_DEPAY (element);
+
+ switch (transition) {
+ case GST_STATE_CHANGE_NULL_TO_READY:
+ break;
+ case GST_STATE_CHANGE_READY_TO_PAUSED:
+ rtpvrawdepay->timestamp = -1;
+ break;
+ default:
+ break;
+ }
+
+ ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
+
+ switch (transition) {
+ case GST_STATE_CHANGE_PAUSED_TO_READY:
+ if (rtpvrawdepay->outbuf) {
+ gst_buffer_unref (rtpvrawdepay->outbuf);
+ rtpvrawdepay->outbuf = NULL;
+ }
+ break;
+ case GST_STATE_CHANGE_READY_TO_NULL:
+ break;
+ default:
+ break;
+ }
+ return ret;
+}
+
+gboolean
+gst_rtp_vraw_depay_plugin_init (GstPlugin * plugin)
+{
+ return gst_element_register (plugin, "rtpvrawdepay",
+ GST_RANK_MARGINAL, GST_TYPE_RTP_VRAW_DEPAY);
+}