diff options
author | David Schleef <ds@schleef.org> | 2011-01-02 16:13:56 -0800 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2011-01-02 16:13:56 -0800 |
commit | 73d85fa438b92316856071902a26f81f9c0ca733 (patch) | |
tree | 55e2f8100c30cc57a5f86b1036e6093b8c6ea9aa | |
parent | 94f6f34ace352713d2c7dc39fe1eccf51a4eecee (diff) |
colorspace: Disable matrixing on big-endian
It's broken until someone writes better Orc code. Fixes #631232.
-rw-r--r-- | gst/colorspace/colorspace.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/colorspace/colorspace.c b/gst/colorspace/colorspace.c index 334362ec6..e69ab80a4 100644 --- a/gst/colorspace/colorspace.c +++ b/gst/colorspace/colorspace.c @@ -1708,6 +1708,7 @@ convert_Y444_AYUV (ColorspaceConvert * convert, guint8 * dest, convert->src_stride[2], convert->width, convert->height); } +#if G_BYTE_ORDER == G_LITTLE_ENDIAN static void convert_AYUV_ARGB (ColorspaceConvert * convert, guint8 * dest, const guint8 * src) @@ -1776,6 +1777,7 @@ convert_I420_BGRA (ColorspaceConvert * convert, guint8 * dest, } } } +#endif @@ -1857,6 +1859,7 @@ static const ColorspaceTransform transforms[] = { {GST_VIDEO_FORMAT_Y444, COLOR_SPEC_NONE, GST_VIDEO_FORMAT_Y42B, COLOR_SPEC_NONE, TRUE, convert_Y444_Y42B}, +#if G_BYTE_ORDER == G_LITTLE_ENDIAN {GST_VIDEO_FORMAT_AYUV, COLOR_SPEC_YUV_BT470_6, GST_VIDEO_FORMAT_ARGB, COLOR_SPEC_RGB, FALSE, convert_AYUV_ARGB}, {GST_VIDEO_FORMAT_AYUV, COLOR_SPEC_YUV_BT470_6, GST_VIDEO_FORMAT_BGRA, @@ -1872,6 +1875,7 @@ static const ColorspaceTransform transforms[] = { {GST_VIDEO_FORMAT_I420, COLOR_SPEC_YUV_BT470_6, GST_VIDEO_FORMAT_BGRA, COLOR_SPEC_RGB, FALSE, convert_I420_BGRA}, +#endif }; static void |