mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
tests: fix scale test for 1.0
It needs a basetransform patch that makes it prefer the order of the caps property instead of passthrough.
This commit is contained in:
parent
92560517e8
commit
6fa859f679
1 changed files with 4 additions and 11 deletions
|
@ -41,28 +41,20 @@ make_pipeline (gint type)
|
|||
"ximagesink");
|
||||
break;
|
||||
case 2:
|
||||
pstr = g_strdup_printf ("videotestsrc peer-alloc=0 ! videoscale ! "
|
||||
pstr = g_strdup_printf ("videotestsrc ! videoscale ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
case 3:
|
||||
pstr =
|
||||
g_strdup_printf ("videotestsrc peer-alloc=0 ! queue ! videoscale ! "
|
||||
g_strdup_printf ("videotestsrc ! queue ! videoscale ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
case 4:
|
||||
pstr =
|
||||
g_strdup_printf ("videotestsrc peer-alloc=0 ! videoscale ! queue ! "
|
||||
g_strdup_printf ("videotestsrc ! videoscale ! queue ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
case 5:
|
||||
pstr = g_strdup_printf ("videotestsrc peer-alloc=0 ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
case 6:
|
||||
pstr = g_strdup_printf ("videotestsrc ! videoscale ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
case 7:
|
||||
pstr = g_strdup_printf ("v4l2src ! videoconvert ! videoscale ! "
|
||||
"capsfilter name=filter ! " "ximagesink");
|
||||
break;
|
||||
|
@ -121,6 +113,7 @@ main (int argc, char **argv)
|
|||
capsstr =
|
||||
g_strdup_printf ("video/x-raw, width=(int)%d, height=(int)%d;"
|
||||
"video/x-raw", width, height);
|
||||
|
||||
caps = gst_caps_from_string (capsstr);
|
||||
g_free (capsstr);
|
||||
g_object_set (filter, "caps", caps, NULL);
|
||||
|
|
Loading…
Reference in a new issue