--- /dev/null
+/* GStreamer
+ * Copyright (C) 2010 David Schleef <ds@schleef.org>
+ *
+ * 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 "colorspace.h"
+#include <glib.h>
+#include <string.h>
+#include "gstcolorspaceorc.h"
+
+
+static void colorspace_convert_generic (ColorspaceConvert * convert,
+ guint8 * dest, guint8 * src);
+static void colorspace_convert_lookup_fastpath (ColorspaceConvert * convert);
+static void colorspace_convert_lookup_getput (ColorspaceConvert * convert);
+
+
+ColorspaceConvert *
+colorspace_convert_new (GstVideoFormat to_format,
+ GstVideoFormat from_format, int width, int height)
+{
+ ColorspaceConvert *convert;
+ int i;
+
+ convert = g_malloc (sizeof (ColorspaceConvert));
+ memset (convert, 0, sizeof (ColorspaceConvert));
+
+ convert->to_format = to_format;
+ convert->from_format = from_format;
+ convert->height = height;
+ convert->width = width;
+ convert->convert = colorspace_convert_generic;
+
+ for (i = 0; i < 4; i++) {
+ convert->dest_stride[i] = gst_video_format_get_row_stride (to_format, i,
+ width);
+ convert->dest_offset[i] = gst_video_format_get_component_offset (to_format,
+ i, width, height);
+ if (i == 0)
+ convert->dest_offset[i] = 0;
+
+ convert->src_stride[i] = gst_video_format_get_row_stride (from_format, i,
+ width);
+ convert->src_offset[i] = gst_video_format_get_component_offset (from_format,
+ i, width, height);
+ if (i == 0)
+ convert->src_offset[i] = 0;
+
+ GST_DEBUG ("%d: dest %d %d src %d %d", i,
+ convert->dest_stride[i], convert->dest_offset[i],
+ convert->src_stride[i], convert->src_offset[i]);
+ }
+
+ colorspace_convert_lookup_fastpath (convert);
+ colorspace_convert_lookup_getput (convert);
+
+ convert->tmpline = g_malloc (sizeof (guint32) * width * 2);
+
+ return convert;
+}
+
+void
+colorspace_convert_free (ColorspaceConvert * convert)
+{
+ if (convert->palette)
+ g_free (convert->palette);
+ if (convert->tmpline)
+ g_free (convert->tmpline);
+
+ g_free (convert);
+}
+
+void
+colorspace_convert_set_interlaced (ColorspaceConvert * convert,
+ gboolean interlaced)
+{
+ convert->interlaced = interlaced;
+}
+
+void
+colorspace_convert_set_palette (ColorspaceConvert * convert, guint32 * palette)
+{
+ if (convert->palette == NULL) {
+ convert->palette = g_malloc (sizeof (guint32) * 256);
+ }
+ memcpy (convert->palette, palette, sizeof (guint32) * 256);
+}
+
+void
+colorspace_convert_convert (ColorspaceConvert * convert,
+ guint8 * dest, guint8 * src)
+{
+ convert->convert (convert, dest, src);
+}
+
+/* Line conversion to AYUV */
+
+#define FRAME_GET_LINE(dir, comp, line) \
+ ((dir) + convert-> dir ## _offset[(comp)] + convert-> dir ## _stride[(comp)] * (line))
+
+static void
+getline_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_I420 (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 1, j >> 1),
+ FRAME_GET_LINE (src, 2, j >> 1), convert->width);
+}
+
+static void
+putline_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_I420 (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 1, j >> 1),
+ FRAME_GET_LINE (dest, 2, j >> 1), src, convert->width / 2);
+}
+
+static void
+getline_YV12 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_I420 (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 1, j >> 1),
+ FRAME_GET_LINE (src, 2, j >> 1), convert->width);
+}
+
+static void
+putline_YV12 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_I420 (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 1, j >> 1),
+ FRAME_GET_LINE (dest, 2, j >> 1), src, convert->width / 2);
+}
+
+static void
+getline_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_YUY2 (dest, FRAME_GET_LINE (src, 0, j), convert->width / 2);
+}
+
+static void
+putline_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_YUY2 (FRAME_GET_LINE (dest, 0, j), src, convert->width / 2);
+}
+
+static void
+getline_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_UYVY (dest, FRAME_GET_LINE (src, 0, j), convert->width / 2);
+}
+
+static void
+putline_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_UYVY (FRAME_GET_LINE (dest, 0, j), src, convert->width / 2);
+}
+
+static void
+getline_YVYU (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_YVYU (dest, FRAME_GET_LINE (src, 0, j), convert->width / 2);
+}
+
+static void
+putline_YVYU (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_YVYU (FRAME_GET_LINE (dest, 0, j), src, convert->width / 2);
+}
+
+static void
+getline_v308 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ dest[i * 4 + 0] = 0xff;
+ dest[i * 4 + 1] = srcline[i * 3 + 0];
+ dest[i * 4 + 2] = srcline[i * 3 + 1];
+ dest[i * 4 + 3] = srcline[i * 3 + 2];
+ }
+}
+
+static void
+putline_v308 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *destline = FRAME_GET_LINE (dest, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ destline[i * 3 + 0] = src[i * 4 + 1];
+ destline[i * 3 + 1] = src[i * 4 + 2];
+ destline[i * 3 + 2] = src[i * 4 + 3];
+ }
+}
+
+static void
+getline_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ memcpy (dest, FRAME_GET_LINE (src, 0, j), convert->width * 4);
+}
+
+static void
+putline_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ memcpy (FRAME_GET_LINE (dest, 0, j), src, convert->width * 4);
+}
+
+#if 0
+static void
+getline_v410 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ dest[i * 4 + 0] = GST_READ_UINT16_LE (srcline + i * 8 + 0);
+ dest[i * 4 + 1] = GST_READ_UINT16_LE (srcline + i * 8 + 2);
+ dest[i * 4 + 2] = GST_READ_UINT16_LE (srcline + i * 8 + 4);
+ dest[i * 4 + 3] = GST_READ_UINT16_LE (srcline + i * 8 + 6);
+ }
+}
+#endif
+
+static void
+getline_v210 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+
+ for (i = 0; i < convert->width; i += 6) {
+ guint32 a0, a1, a2, a3;
+ guint16 y0, y1, y2, y3, y4, y5;
+ guint16 u0, u2, u4;
+ guint16 v0, v2, v4;
+
+ a0 = GST_READ_UINT32_LE (srcline + (i / 6) * 16 + 0);
+ a1 = GST_READ_UINT32_LE (srcline + (i / 6) * 16 + 4);
+ a2 = GST_READ_UINT32_LE (srcline + (i / 6) * 16 + 8);
+ a3 = GST_READ_UINT32_LE (srcline + (i / 6) * 16 + 12);
+
+ u0 = ((a0 >> 0) & 0x3ff) >> 2;
+ y0 = ((a0 >> 10) & 0x3ff) >> 2;
+ v0 = ((a0 >> 20) & 0x3ff) >> 2;
+ y1 = ((a1 >> 0) & 0x3ff) >> 2;
+
+ u2 = ((a1 >> 10) & 0x3ff) >> 2;
+ y2 = ((a1 >> 20) & 0x3ff) >> 2;
+ v2 = ((a2 >> 0) & 0x3ff) >> 2;
+ y3 = ((a2 >> 10) & 0x3ff) >> 2;
+
+ u4 = ((a2 >> 20) & 0x3ff) >> 2;
+ y4 = ((a3 >> 0) & 0x3ff) >> 2;
+ v4 = ((a3 >> 10) & 0x3ff) >> 2;
+ y5 = ((a3 >> 20) & 0x3ff) >> 2;
+
+ dest[4 * (i + 0) + 0] = 0xff;
+ dest[4 * (i + 0) + 1] = y0;
+ dest[4 * (i + 0) + 2] = u0;
+ dest[4 * (i + 0) + 3] = v0;
+
+ dest[4 * (i + 1) + 0] = 0xff;
+ dest[4 * (i + 1) + 1] = y1;
+ dest[4 * (i + 1) + 2] = u0;
+ dest[4 * (i + 1) + 3] = v0;
+
+ dest[4 * (i + 2) + 0] = 0xff;
+ dest[4 * (i + 2) + 1] = y2;
+ dest[4 * (i + 2) + 2] = u2;
+ dest[4 * (i + 2) + 3] = v2;
+
+ dest[4 * (i + 3) + 0] = 0xff;
+ dest[4 * (i + 3) + 1] = y3;
+ dest[4 * (i + 3) + 2] = u2;
+ dest[4 * (i + 3) + 3] = v2;
+
+ dest[4 * (i + 4) + 0] = 0xff;
+ dest[4 * (i + 4) + 1] = y4;
+ dest[4 * (i + 4) + 2] = u4;
+ dest[4 * (i + 4) + 3] = v4;
+
+ dest[4 * (i + 5) + 0] = 0xff;
+ dest[4 * (i + 5) + 1] = y5;
+ dest[4 * (i + 5) + 2] = u4;
+ dest[4 * (i + 5) + 3] = v4;
+
+ }
+
+}
+
+static void
+putline_v210 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *destline = FRAME_GET_LINE (dest, 0, j);
+
+ for (i = 0; i < convert->width + 5; i += 6) {
+ guint32 a0, a1, a2, a3;
+ guint16 y0, y1, y2, y3, y4, y5;
+ guint16 u0, u1, u2;
+ guint16 v0, v1, v2;
+
+ y0 = src[4 * (i + 0) + 1];
+ y1 = src[4 * (i + 1) + 1];
+ y2 = src[4 * (i + 2) + 1];
+ y3 = src[4 * (i + 3) + 1];
+ y4 = src[4 * (i + 4) + 1];
+ y5 = src[4 * (i + 5) + 1];
+
+ u0 = (src[4 * (i + 0) + 2] + src[4 * (i + 1) + 2] + 1) >> 1;
+ u1 = (src[4 * (i + 2) + 2] + src[4 * (i + 3) + 2] + 1) >> 1;
+ u2 = (src[4 * (i + 4) + 2] + src[4 * (i + 5) + 2] + 1) >> 1;
+
+ v0 = (src[4 * (i + 0) + 3] + src[4 * (i + 1) + 3] + 1) >> 1;
+ v1 = (src[4 * (i + 2) + 3] + src[4 * (i + 3) + 3] + 1) >> 1;
+ v2 = (src[4 * (i + 4) + 3] + src[4 * (i + 5) + 3] + 1) >> 1;
+
+ a0 = (u0 << 2) | ((y0 << 2) << 10) | ((v0 << 2) << 20);
+ a1 = (y1 << 2) | ((u1 << 2) << 10) | ((y2 << 2) << 20);
+ a2 = (v1 << 2) | ((y3 << 2) << 10) | ((u2 << 2) << 20);
+ a3 = (y4 << 2) | ((v2 << 2) << 10) | ((y5 << 2) << 20);
+
+ GST_WRITE_UINT32_LE (destline + (i / 6) * 16 + 0, a0);
+ GST_WRITE_UINT32_LE (destline + (i / 6) * 16 + 4, a1);
+ GST_WRITE_UINT32_LE (destline + (i / 6) * 16 + 8, a2);
+ GST_WRITE_UINT32_LE (destline + (i / 6) * 16 + 12, a3);
+ }
+}
+
+static void
+getline_v216 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ dest[i * 4 + 0] = 0xff;
+ dest[i * 4 + 1] = GST_READ_UINT16_LE (srcline + i * 4 + 2);
+ dest[i * 4 + 2] = GST_READ_UINT16_LE (srcline + (i >> 1) * 8 + 0);
+ dest[i * 4 + 3] = GST_READ_UINT16_LE (srcline + (i >> 1) * 8 + 4);
+ }
+}
+
+static void
+putline_v216 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *destline = FRAME_GET_LINE (dest, 0, j);
+ for (i = 0; i < convert->width / 2; i++) {
+ GST_WRITE_UINT16_LE (destline + i * 8 + 0, src[(i * 2 + 0) * 4 + 2] << 8);
+ GST_WRITE_UINT16_LE (destline + i * 8 + 2, src[(i * 2 + 0) * 4 + 1] << 8);
+ GST_WRITE_UINT16_LE (destline + i * 8 + 4, src[(i * 2 + 1) * 4 + 3] << 8);
+ GST_WRITE_UINT16_LE (destline + i * 8 + 8, src[(i * 2 + 0) * 4 + 1] << 8);
+ }
+}
+
+static void
+getline_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_Y42B (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 1, j),
+ FRAME_GET_LINE (src, 2, j), convert->width / 2);
+}
+
+static void
+putline_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_Y42B (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 1, j),
+ FRAME_GET_LINE (dest, 2, j), src, convert->width / 2);
+}
+
+static void
+getline_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_Y444 (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 1, j), FRAME_GET_LINE (src, 2, j), convert->width);
+}
+
+static void
+putline_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_Y444 (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 1, j),
+ FRAME_GET_LINE (dest, 2, j), src, convert->width);
+}
+
+static void
+getline_Y800 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_Y800 (dest, FRAME_GET_LINE (src, 0, j), convert->width);
+}
+
+static void
+putline_Y800 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_Y800 (FRAME_GET_LINE (dest, 0, j), src, convert->width);
+}
+
+static void
+getline_BGRA (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_BGRA (dest, FRAME_GET_LINE (src, 0, j), convert->width);
+}
+
+static void
+putline_BGRA (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_BGRA (FRAME_GET_LINE (dest, 0, j), src, convert->width);
+}
+
+static void
+getline_ABGR (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_ABGR (dest, FRAME_GET_LINE (src, 0, j), convert->width);
+}
+
+static void
+putline_ABGR (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_ABGR (FRAME_GET_LINE (dest, 0, j), src, convert->width);
+}
+
+static void
+getline_RGBA (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_RGBA (dest, FRAME_GET_LINE (src, 0, j), convert->width);
+}
+
+static void
+putline_RGBA (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_RGBA (FRAME_GET_LINE (dest, 0, j), src, convert->width);
+}
+
+static void
+getline_RGB (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ dest[i * 4 + 0] = 0xff;
+ dest[i * 4 + 1] = srcline[i * 3 + 0];
+ dest[i * 4 + 2] = srcline[i * 3 + 1];
+ dest[i * 4 + 3] = srcline[i * 3 + 2];
+ }
+}
+
+static void
+putline_RGB (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *destline = FRAME_GET_LINE (dest, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ destline[i * 3 + 0] = src[i * 4 + 1];
+ destline[i * 3 + 1] = src[i * 4 + 2];
+ destline[i * 3 + 2] = src[i * 4 + 3];
+ }
+}
+
+static void
+getline_BGR (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *srcline = FRAME_GET_LINE (src, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ dest[i * 4 + 0] = 0xff;
+ dest[i * 4 + 1] = srcline[i * 3 + 2];
+ dest[i * 4 + 2] = srcline[i * 3 + 1];
+ dest[i * 4 + 3] = srcline[i * 3 + 0];
+ }
+}
+
+static void
+putline_BGR (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+ guint8 *destline = FRAME_GET_LINE (dest, 0, j);
+ for (i = 0; i < convert->width; i++) {
+ destline[i * 3 + 0] = src[i * 4 + 3];
+ destline[i * 3 + 1] = src[i * 4 + 2];
+ destline[i * 3 + 2] = src[i * 4 + 1];
+ }
+}
+
+static void
+getline_NV12 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_NV12 (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 1, j >> 1), convert->width / 2);
+}
+
+static void
+putline_NV12 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_NV12 (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 1, j >> 1), src, convert->width / 2);
+}
+
+static void
+getline_NV21 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_getline_NV21 (dest,
+ FRAME_GET_LINE (src, 0, j),
+ FRAME_GET_LINE (src, 2, j >> 1), convert->width / 2);
+}
+
+static void
+putline_NV21 (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ cogorc_putline_NV21 (FRAME_GET_LINE (dest, 0, j),
+ FRAME_GET_LINE (dest, 2, j >> 1), src, convert->width / 2);
+}
+
+static void
+getline_UYVP (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+
+ for (i = 0; i < convert->width; i += 2) {
+ guint16 y0, y1;
+ guint16 u0;
+ guint16 v0;
+
+ u0 = (src[(i / 2) * 5 + 0] << 2) | (src[(i / 2) * 5 + 1] >> 6);
+ y0 = ((src[(i / 2) * 5 + 1] & 0x3f) << 4) | (src[(i / 2) * 5 + 2] >> 4);
+ v0 = ((src[(i / 2) * 5 + 2] & 0x0f) << 6) | (src[(i / 2) * 5 + 3] >> 2);
+ y1 = ((src[(i / 2) * 5 + 3] & 0x03) << 8) | src[(i / 2) * 5 + 4];
+
+ dest[i * 4 + 0] = 0xff;
+ dest[i * 4 + 1] = y0 >> 2;
+ dest[i * 4 + 2] = u0 >> 2;
+ dest[i * 4 + 3] = v0 >> 2;
+ dest[i * 4 + 4] = 0xff;
+ dest[i * 4 + 5] = y1 >> 2;
+ dest[i * 4 + 6] = u0 >> 2;
+ dest[i * 4 + 7] = v0 >> 2;
+ }
+}
+
+static void
+putline_UYVP (ColorspaceConvert * convert, guint8 * dest, guint8 * src, int j)
+{
+ int i;
+
+ for (i = 0; i < convert->width; i += 2) {
+ guint16 y0, y1;
+ guint16 u0;
+ guint16 v0;
+
+ y0 = src[4 * (i + 0) + 1];
+ y1 = src[4 * (i + 1) + 1];
+ u0 = (src[4 * (i + 0) + 2] + src[4 * (i + 1) + 2] + 1) >> 1;
+ v0 = (src[4 * (i + 0) + 3] + src[4 * (i + 1) + 3] + 1) >> 1;
+
+ dest[(i / 2) * 5 + 0] = u0;
+ dest[(i / 2) * 5 + 1] = y0 >> 2;
+ dest[(i / 2) * 5 + 2] = (y0 << 6) | (v0 >> 4);
+ dest[(i / 2) * 5 + 3] = (v0 << 4) | (y1 >> 2);
+ dest[(i / 2) * 5 + 4] = (y1 << 2);
+ }
+}
+
+
+
+typedef struct
+{
+ GstVideoFormat format;
+ void (*getline) (ColorspaceConvert * convert, guint8 * dest, guint8 * src,
+ int j);
+ void (*putline) (ColorspaceConvert * convert, guint8 * dest, guint8 * src,
+ int j);
+} ColorspaceLine;
+static ColorspaceLine lines[] = {
+ {GST_VIDEO_FORMAT_I420, getline_I420, putline_I420},
+ {GST_VIDEO_FORMAT_YV12, getline_YV12, putline_YV12},
+ {GST_VIDEO_FORMAT_YUY2, getline_YUY2, putline_YUY2},
+ {GST_VIDEO_FORMAT_UYVY, getline_UYVY, putline_UYVY},
+ {GST_VIDEO_FORMAT_AYUV, getline_AYUV, putline_AYUV},
+ {GST_VIDEO_FORMAT_RGBx, getline_RGBA, putline_RGBA},
+ {GST_VIDEO_FORMAT_BGRx, getline_BGRA, putline_BGRA},
+ {GST_VIDEO_FORMAT_xRGB, getline_AYUV, putline_AYUV},
+ {GST_VIDEO_FORMAT_xBGR, getline_ABGR, putline_ABGR},
+ {GST_VIDEO_FORMAT_RGBA, getline_RGBA, putline_RGBA},
+ {GST_VIDEO_FORMAT_BGRA, getline_BGRA, putline_BGRA},
+ {GST_VIDEO_FORMAT_ARGB, getline_AYUV, putline_AYUV},
+ {GST_VIDEO_FORMAT_ABGR, getline_ABGR, putline_ABGR},
+ {GST_VIDEO_FORMAT_RGB, getline_RGB, putline_RGB},
+ {GST_VIDEO_FORMAT_BGR, getline_BGR, putline_BGR},
+ //{GST_VIDEO_FORMAT_Y41B, getline_Y41B, putline_Y41B},
+ {GST_VIDEO_FORMAT_Y42B, getline_Y42B, putline_Y42B},
+ {GST_VIDEO_FORMAT_YVYU, getline_YVYU, putline_YVYU},
+ {GST_VIDEO_FORMAT_Y444, getline_Y444, putline_Y444},
+ {GST_VIDEO_FORMAT_v210, getline_v210, putline_v210},
+ {GST_VIDEO_FORMAT_v216, getline_v216, putline_v216},
+ {GST_VIDEO_FORMAT_NV12, getline_NV12, putline_NV12},
+ {GST_VIDEO_FORMAT_NV21, getline_NV21, putline_NV21},
+ //{GST_VIDEO_FORMAT_GRAY8, getline_GRAY8, putline_GRAY8},
+ //{GST_VIDEO_FORMAT_GRAY16_BE, getline_GRAY16_BE, putline_GRAY16_BE},
+ //{GST_VIDEO_FORMAT_GRAY16_LE, getline_GRAY16_LE, putline_GRAY16_LE},
+ {GST_VIDEO_FORMAT_v308, getline_v308, putline_v308},
+ {GST_VIDEO_FORMAT_Y800, getline_Y800, putline_Y800},
+ //{GST_VIDEO_FORMAT_Y16, getline_Y16, putline_Y16},
+ //{GST_VIDEO_FORMAT_RGB16, getline_RGB16, putline_RGB16},
+ //{GST_VIDEO_FORMAT_BGR16, getline_BGR16, putline_BGR16},
+ //{GST_VIDEO_FORMAT_RGB15, getline_RGB15, putline_RGB15},
+ //{GST_VIDEO_FORMAT_BGR15, getline_BGR15, putline_BGR15},
+ {GST_VIDEO_FORMAT_UYVP, getline_UYVP, putline_UYVP}
+};
+
+
+static void
+matrix_rgb2yuv (ColorspaceConvert * convert)
+{
+ int i;
+ int r, g, b;
+ int y, u, v;
+ guint8 *tmpline = convert->tmpline;
+
+ for (i = 0; i < convert->width; i++) {
+ r = tmpline[i * 4 + 1];
+ g = tmpline[i * 4 + 2];
+ b = tmpline[i * 4 + 3];
+
+ y = (66 * r + 129 * g + 25 * b + 4096) >> 8;
+ u = (-38 * r - 74 * g + 112 * b + 32768) >> 8;
+ v = (112 * r - 94 * g - 18 * b + 32768) >> 8;
+
+ tmpline[i * 4 + 1] = CLAMP (y, 0, 255);
+ tmpline[i * 4 + 2] = CLAMP (u, 0, 255);
+ tmpline[i * 4 + 3] = CLAMP (v, 0, 255);
+ }
+}
+
+static void
+matrix_yuv2rgb (ColorspaceConvert * convert)
+{
+ int i;
+ int r, g, b;
+ int y, u, v;
+ guint8 *tmpline = convert->tmpline;
+
+ for (i = 0; i < convert->width; i++) {
+ y = tmpline[i * 4 + 1];
+ u = tmpline[i * 4 + 2];
+ v = tmpline[i * 4 + 3];
+
+ r = (298 * y + 409 * v - 57068) >> 8;
+ g = (298 * y - 100 * u - 208 * v + 34707) >> 8;
+ b = (298 * y + 516 * u - 70870) >> 8;
+
+ tmpline[i * 4 + 1] = CLAMP (r, 0, 255);
+ tmpline[i * 4 + 2] = CLAMP (g, 0, 255);
+ tmpline[i * 4 + 3] = CLAMP (b, 0, 255);
+ }
+}
+
+static void
+matrix_identity (ColorspaceConvert * convert)
+{
+ /* do nothing */
+}
+
+
+static void
+colorspace_convert_lookup_getput (ColorspaceConvert * convert)
+{
+ int i;
+
+ convert->getline = NULL;
+ for (i = 0; i < sizeof (lines) / sizeof (lines[0]); i++) {
+ if (lines[i].format == convert->from_format) {
+ convert->getline = lines[i].getline;
+ break;
+ }
+ }
+ convert->putline = NULL;
+ for (i = 0; i < sizeof (lines) / sizeof (lines[0]); i++) {
+ if (lines[i].format == convert->to_format) {
+ convert->putline = lines[i].putline;
+ break;
+ }
+ }
+ GST_ERROR ("get %p put %p", convert->getline, convert->putline);
+
+ if (gst_video_format_is_rgb (convert->to_format) &&
+ gst_video_format_is_yuv (convert->from_format)) {
+ convert->matrix = matrix_yuv2rgb;
+ } else if (gst_video_format_is_yuv (convert->to_format) &&
+ gst_video_format_is_rgb (convert->from_format)) {
+ convert->matrix = matrix_rgb2yuv;
+ } else {
+ convert->matrix = matrix_identity;
+ }
+}
+
+static void
+colorspace_convert_generic (ColorspaceConvert * convert, guint8 * dest,
+ guint8 * src)
+{
+ int j;
+
+ if (convert->getline == NULL) {
+ GST_ERROR ("no getline");
+ return;
+ }
+
+ if (convert->putline == NULL) {
+ GST_ERROR ("no putline");
+ return;
+ }
+
+ for (j = 0; j < convert->height; j++) {
+ convert->getline (convert, convert->tmpline, src, j);
+ convert->matrix (convert);
+ convert->putline (convert, dest, convert->tmpline, j);
+ }
+}
+
+
+/* Fast paths */
+
+static void
+convert_I420_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+
+ for (i = 0; i < convert->height; i += 2) {
+ cogorc_convert_I420_YUY2 (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), (convert->width + 1) / 2);
+ cogorc_convert_I420_YUY2 (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), (convert->width + 1) / 2);
+ }
+}
+
+static void
+convert_I420_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+
+ for (i = 0; i < convert->height; i += 2) {
+ cogorc_convert_I420_UYVY (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), (convert->width + 1) / 2);
+ }
+}
+
+static void
+convert_I420_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+
+ for (i = 0; i < convert->height; i += 2) {
+ cogorc_convert_I420_AYUV (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), convert->width);
+ }
+}
+
+static void
+convert_I420_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_420_422 (FRAME_GET_LINE (dest, 1, 0),
+ 2 * convert->dest_stride[1], FRAME_GET_LINE (dest, 1, 1),
+ 2 * convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], (convert->width + 1) / 2, convert->height / 2);
+
+ cogorc_planar_chroma_420_422 (FRAME_GET_LINE (dest, 2, 0),
+ 2 * convert->dest_stride[2], FRAME_GET_LINE (dest, 2, 1),
+ 2 * convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height / 2);
+}
+
+static void
+convert_I420_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_420_444 (FRAME_GET_LINE (dest, 1, 0),
+ 2 * convert->dest_stride[1], FRAME_GET_LINE (dest, 1, 1),
+ 2 * convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+
+ cogorc_planar_chroma_420_444 (FRAME_GET_LINE (dest, 2, 0),
+ 2 * convert->dest_stride[2], FRAME_GET_LINE (dest, 2, 1),
+ 2 * convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+}
+
+static void
+convert_YUY2_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+
+ for (i = 0; i < convert->height; i += 2) {
+ cogorc_convert_YUY2_I420 (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (dest, 1, i >> 1),
+ FRAME_GET_LINE (dest, 2, i >> 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1), (convert->width + 1) / 2);
+ }
+}
+
+static void
+convert_YUY2_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_YUY2_AYUV (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_YUY2_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_YUY2_Y42B (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_YUY2_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_YUY2_Y444 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+
+static void
+convert_UYVY_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+
+ for (i = 0; i < convert->height; i += 2) {
+ cogorc_convert_UYVY_I420 (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (dest, 0, i + 1),
+ FRAME_GET_LINE (dest, 1, i >> 1),
+ FRAME_GET_LINE (dest, 2, i >> 1),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 0, i + 1), (convert->width + 1) / 2);
+ }
+}
+
+static void
+convert_UYVY_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_UYVY_AYUV (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_UYVY_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_UYVY_YUY2 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_UYVY_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_UYVY_Y42B (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_UYVY_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_UYVY_Y444 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_AYUV_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_I420 (FRAME_GET_LINE (dest, 0, 0),
+ 2 * convert->dest_stride[0], FRAME_GET_LINE (dest, 0, 1),
+ 2 * convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ 2 * convert->src_stride[0], FRAME_GET_LINE (src, 0, 1),
+ 2 * convert->src_stride[0], convert->width / 2, convert->height / 2);
+}
+
+static void
+convert_AYUV_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_YUY2 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width / 2, convert->height);
+}
+
+static void
+convert_AYUV_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_UYVY (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width / 2, convert->height);
+}
+
+static void
+convert_AYUV_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_Y42B (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_AYUV_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_Y444 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width, convert->height);
+}
+
+static void
+convert_Y42B_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_422_420 (FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ 2 * convert->src_stride[1], FRAME_GET_LINE (src, 1, 1),
+ 2 * convert->src_stride[1], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+
+ cogorc_planar_chroma_422_420 (FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ 2 * convert->src_stride[2], FRAME_GET_LINE (src, 2, 1),
+ 2 * convert->src_stride[2], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+}
+
+static void
+convert_Y42B_Y444 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_422_444 (FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], (convert->width + 1) / 2, convert->height);
+
+ cogorc_planar_chroma_422_444 (FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y42B_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y42B_YUY2 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y42B_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y42B_UYVY (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y42B_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y42B_AYUV (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width) / 2, convert->height);
+}
+
+static void
+convert_Y444_I420 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_444_420 (FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ 2 * convert->src_stride[1], FRAME_GET_LINE (src, 1, 1),
+ 2 * convert->src_stride[1], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+
+ cogorc_planar_chroma_444_420 (FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ 2 * convert->src_stride[2], FRAME_GET_LINE (src, 2, 1),
+ 2 * convert->src_stride[2], (convert->width + 1) / 2,
+ (convert->height + 1) / 2);
+}
+
+static void
+convert_Y444_Y42B (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_memcpy_2d (FRAME_GET_LINE (dest, 0, 0), convert->dest_stride[0],
+ FRAME_GET_LINE (src, 0, 0), convert->src_stride[0],
+ convert->width, convert->height);
+
+ cogorc_planar_chroma_444_422 (FRAME_GET_LINE (dest, 1, 0),
+ convert->dest_stride[1], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], (convert->width + 1) / 2, convert->height);
+
+ cogorc_planar_chroma_444_422 (FRAME_GET_LINE (dest, 2, 0),
+ convert->dest_stride[2], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y444_YUY2 (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y444_YUY2 (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y444_UYVY (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y444_UYVY (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], (convert->width + 1) / 2, convert->height);
+}
+
+static void
+convert_Y444_AYUV (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_Y444_AYUV (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], FRAME_GET_LINE (src, 1, 0),
+ convert->src_stride[1], FRAME_GET_LINE (src, 2, 0),
+ convert->src_stride[2], convert->width, convert->height);
+}
+
+static void
+convert_AYUV_ARGB (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_ARGB (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width, convert->height);
+}
+
+static void
+convert_AYUV_BGRA (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_BGRA (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width, convert->height);
+}
+
+static void
+convert_AYUV_ABGR (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_ABGR (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width, convert->height);
+}
+
+static void
+convert_AYUV_RGBA (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ cogorc_convert_AYUV_RGBA (FRAME_GET_LINE (dest, 0, 0),
+ convert->dest_stride[0], FRAME_GET_LINE (src, 0, 0),
+ convert->src_stride[0], convert->width, convert->height);
+}
+
+static void
+convert_I420_BGRA (ColorspaceConvert * convert, guint8 * dest, guint8 * src)
+{
+ int i;
+ int quality = 0;
+
+ if (quality > 3) {
+ for (i = 0; i < convert->height; i++) {
+ if (i & 1) {
+ cogorc_convert_I420_BGRA_avg (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 1, (i >> 1) + 1),
+ FRAME_GET_LINE (src, 2, i >> 1),
+ FRAME_GET_LINE (src, 2, (i >> 1) + 1), convert->width);
+ } else {
+ cogorc_convert_I420_BGRA (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), convert->width);
+ }
+ }
+ } else {
+ for (i = 0; i < convert->height; i++) {
+ cogorc_convert_I420_BGRA (FRAME_GET_LINE (dest, 0, i),
+ FRAME_GET_LINE (src, 0, i),
+ FRAME_GET_LINE (src, 1, i >> 1),
+ FRAME_GET_LINE (src, 2, i >> 1), convert->width);
+ }
+ }
+}
+
+
+
+/* Fast paths */
+
+typedef struct
+{
+ GstVideoFormat from_format;
+ GstVideoFormat to_format;
+ void (*convert) (ColorspaceConvert * convert, guint8 * dest, guint8 * src);
+} ColorspaceTransform;
+static ColorspaceTransform transforms[] = {
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_YUY2, convert_I420_YUY2},
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_UYVY, convert_I420_UYVY},
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_AYUV, convert_I420_AYUV},
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_Y42B, convert_I420_Y42B},
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_Y444, convert_I420_Y444},
+
+ {GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_I420, convert_YUY2_I420},
+ {GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_UYVY, convert_UYVY_YUY2}, /* alias */
+ {GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_AYUV, convert_YUY2_AYUV},
+ {GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_Y42B, convert_YUY2_Y42B},
+ {GST_VIDEO_FORMAT_YUY2, GST_VIDEO_FORMAT_Y444, convert_YUY2_Y444},
+
+ {GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_I420, convert_UYVY_I420},
+ {GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_YUY2, convert_UYVY_YUY2},
+ {GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_AYUV, convert_UYVY_AYUV},
+ {GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_Y42B, convert_UYVY_Y42B},
+ {GST_VIDEO_FORMAT_UYVY, GST_VIDEO_FORMAT_Y444, convert_UYVY_Y444},
+
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_I420, convert_AYUV_I420},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_YUY2, convert_AYUV_YUY2},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_UYVY, convert_AYUV_UYVY},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_Y42B, convert_AYUV_Y42B},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_Y444, convert_AYUV_Y444},
+
+ {GST_VIDEO_FORMAT_Y42B, GST_VIDEO_FORMAT_I420, convert_Y42B_I420},
+ {GST_VIDEO_FORMAT_Y42B, GST_VIDEO_FORMAT_YUY2, convert_Y42B_YUY2},
+ {GST_VIDEO_FORMAT_Y42B, GST_VIDEO_FORMAT_UYVY, convert_Y42B_UYVY},
+ {GST_VIDEO_FORMAT_Y42B, GST_VIDEO_FORMAT_AYUV, convert_Y42B_AYUV},
+ {GST_VIDEO_FORMAT_Y42B, GST_VIDEO_FORMAT_Y444, convert_Y42B_Y444},
+
+ {GST_VIDEO_FORMAT_Y444, GST_VIDEO_FORMAT_I420, convert_Y444_I420},
+ {GST_VIDEO_FORMAT_Y444, GST_VIDEO_FORMAT_YUY2, convert_Y444_YUY2},
+ {GST_VIDEO_FORMAT_Y444, GST_VIDEO_FORMAT_UYVY, convert_Y444_UYVY},
+ {GST_VIDEO_FORMAT_Y444, GST_VIDEO_FORMAT_AYUV, convert_Y444_AYUV},
+ {GST_VIDEO_FORMAT_Y444, GST_VIDEO_FORMAT_Y42B, convert_Y444_Y42B},
+
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_ARGB, convert_AYUV_ARGB},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_BGRA, convert_AYUV_BGRA},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_xRGB, convert_AYUV_ARGB}, /* alias */
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_BGRx, convert_AYUV_BGRA}, /* alias */
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_ABGR, convert_AYUV_ABGR},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_RGBA, convert_AYUV_RGBA},
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_xBGR, convert_AYUV_ABGR}, /* alias */
+ {GST_VIDEO_FORMAT_AYUV, GST_VIDEO_FORMAT_RGBx, convert_AYUV_RGBA}, /* alias */
+
+ {GST_VIDEO_FORMAT_I420, GST_VIDEO_FORMAT_BGRA, convert_I420_BGRA},
+};
+
+static void
+colorspace_convert_lookup_fastpath (ColorspaceConvert * convert)
+{
+ int i;
+
+ for (i = 0; i < sizeof (transforms) / sizeof (transforms[0]); i++) {
+ if (transforms[i].to_format == convert->to_format &&
+ transforms[i].from_format == convert->from_format) {
+ convert->convert = transforms[i].convert;
+ return;
+ }
+ }
+}