diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2013-07-26 10:05:06 +0200 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2013-07-26 13:16:57 +0200 |
commit | f997f6271f72dead273d3851f0751adb2942cdba (patch) | |
tree | 8168abc2a40cee3dfa81973d5e4793a94490c9e5 /tests | |
parent | 6e9ce9ae37384a1b0073de432ee6209e5d47d52a (diff) | |
download | gstreamer-vaapi-f997f6271f72dead273d3851f0751adb2942cdba.tar.gz |
tests: image: add support for packed YUV formats.
Add support for packed YUV 4:2:2 formats, i.e. YUY2 and UYVY.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/image.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/image.c b/tests/image.c index 8d1ecc05..f5ee9a92 100644 --- a/tests/image.c +++ b/tests/image.c @@ -213,6 +213,42 @@ static void draw_rect_I420( // Y, U, V planes draw_rect_YV12(new_pixels, new_stride, x, y, width, height, color); } +static void draw_rect_YUV422(guchar *pixels[3], guint stride[3], + gint x, gint y, guint width, guint height, guint32 color) +{ + guint i, j; + + width /= 2; + for (j = 0; j < height; j++) { + guint32 * const p = (guint32 *) + (pixels[0] + (y + j) * stride[0] + x * 2); + for (i = 0; i < width; i++) + p[i] = color; + } +} + +static void draw_rect_YUY2(guchar *pixels[3], guint stride[3], + gint x, gint y, guint width, guint height, guint32 color) +{ + const guchar Y = color >> 16; + const guchar Cb = color >> 8; + const guchar Cr = color; + + color = (Y << 24) | (Cb << 16) | (Y << 8) | Cr; + draw_rect_YUV422(pixels, stride, x, y, width, height, GUINT32_TO_BE(color)); +} + +static void draw_rect_UYVY(guchar *pixels[3], guint stride[3], + gint x, gint y, guint width, guint height, guint32 color) +{ + const guchar Y = color >> 16; + const guchar Cb = color >> 8; + const guchar Cr = color; + + color = (Cb << 24) | (Y << 16) | (Cr << 8) | Y; + draw_rect_YUV422(pixels, stride, x, y, width, height, GUINT32_TO_BE(color)); +} + static void draw_rect_AYUV( guchar *pixels[3], guint stride[3], @@ -279,6 +315,8 @@ image_draw_rectangle( _(NV12), _(YV12), _(I420), + _(YUY2), + _(UYVY), _(AYUV), #undef _ { 0, } |