From 7ed96ea16a6001e493ad26b40145447f881c3720 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Wed, 28 Dec 2011 16:25:37 +0100 Subject: [PATCH] check/video: Caps have "interlace-mode=progressive" by default --- tests/check/libs/video.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/check/libs/video.c b/tests/check/libs/video.c index 27e8b2b0f5..a4d589f778 100644 --- a/tests/check/libs/video.c +++ b/tests/check/libs/video.c @@ -617,7 +617,8 @@ GST_START_TEST (test_parse_caps_rgb) caps = gst_caps_from_string (formats[i].tmpl_caps_string); gst_caps_set_simple (caps, "width", G_TYPE_INT, 2 * (i + 1), "height", G_TYPE_INT, i + 1, "framerate", GST_TYPE_FRACTION, 15, 1, - "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1, NULL); + "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1, + "interlace-mode", G_TYPE_STRING, "progressive", NULL); g_assert (gst_caps_is_fixed (caps)); GST_DEBUG ("testing caps: %" GST_PTR_FORMAT, caps);