From: Tim-Philipp Müller Date: Thu, 16 May 2013 10:09:11 +0000 (+0100) Subject: tests: ignore new NV16 format in videoscale unit test X-Git-Tag: 1.1.1~79 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1bc94d4aa3babbfa76da0599d93005755ae21748;p=platform%2Fupstream%2Fgst-plugins-base.git tests: ignore new NV16 format in videoscale unit test https://bugzilla.gnome.org/show_bug.cgi?id=700377 --- diff --git a/tests/check/elements/videoscale.c b/tests/check/elements/videoscale.c index c2869d1..0dc3372 100644 --- a/tests/check/elements/videoscale.c +++ b/tests/check/elements/videoscale.c @@ -91,6 +91,7 @@ check_pad_template (GstPadTemplate * tmpl) case GST_VIDEO_FORMAT_v210: case GST_VIDEO_FORMAT_v216: case GST_VIDEO_FORMAT_NV12: + case GST_VIDEO_FORMAT_NV16: case GST_VIDEO_FORMAT_NV21: case GST_VIDEO_FORMAT_UYVP: case GST_VIDEO_FORMAT_A420: @@ -121,7 +122,7 @@ check_pad_template (GstPadTemplate * tmpl) GST_LOG ("Ignoring lack of support for format %s", fmt_str); break; default: - g_error ("videoconvert doesn't support format '%s'", fmt_str); + g_error ("videoscale doesn't support format '%s'", fmt_str); break; } }