tests: fix videocrop crop_to_1x1 unit test for GRAY8 format

Update table with pixel values with the value actually produced
by videotestsrc.
This commit is contained in:
Tim-Philipp Müller 2012-08-26 21:27:00 +01:00
parent 01665d9da3
commit a62f9b178d

View file

@ -258,7 +258,7 @@ check_1x1_buffer (GstBuffer * buf, GstCaps * caps)
/* the exact values we check for come from videotestsrc */
static const guint yuv_values[] = { 81, 90, 240, 255 };
static const guint rgb_values[] = { 0xff, 0, 0, 255 };
static const guint gray_values[] = { 63, 63, 63, 255 };
static const guint gray_values[] = { 0x51 };
const guint *values;
guint i;
const GstVideoFormatInfo *finfo;