mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
check/video: Caps have "interlace-mode=progressive" by default
This commit is contained in:
parent
b6d3b1ac97
commit
7ed96ea16a
1 changed files with 2 additions and 1 deletions
|
@ -617,7 +617,8 @@ GST_START_TEST (test_parse_caps_rgb)
|
||||||
caps = gst_caps_from_string (formats[i].tmpl_caps_string);
|
caps = gst_caps_from_string (formats[i].tmpl_caps_string);
|
||||||
gst_caps_set_simple (caps, "width", G_TYPE_INT, 2 * (i + 1), "height",
|
gst_caps_set_simple (caps, "width", G_TYPE_INT, 2 * (i + 1), "height",
|
||||||
G_TYPE_INT, i + 1, "framerate", GST_TYPE_FRACTION, 15, 1,
|
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));
|
g_assert (gst_caps_is_fixed (caps));
|
||||||
|
|
||||||
GST_DEBUG ("testing caps: %" GST_PTR_FORMAT, caps);
|
GST_DEBUG ("testing caps: %" GST_PTR_FORMAT, caps);
|
||||||
|
|
Loading…
Reference in a new issue