diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-27 10:41:22 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-11-28 08:44:01 +0100 |
commit | bb6c67bb36b136de10256f0999128df4a42f9ffc (patch) | |
tree | 8fa03b84191dab1e13b9ce0f1b0c1a2e6e431616 /tests | |
parent | af7d13ee4a4bf8d708f9b0598abb8f6e22b76de1 (diff) | |
download | ffmpeg-streaming-bb6c67bb36b136de10256f0999128df4a42f9ffc.zip ffmpeg-streaming-bb6c67bb36b136de10256f0999128df4a42f9ffc.tar.gz |
lavfi: remove vf_slicify
The following commit will make it useless.
The crop_scale_vflip FATE test changes because of off-by-one differences
in output when vflipped slices are passed to sws.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/lavfi-regression.sh | 8 | ||||
-rw-r--r-- | tests/ref/lavfi/crop_scale_vflip | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh index 05cc8cd..fc7c153 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -21,10 +21,8 @@ do_video_filter() { } do_lavfi() { - vfilters="slicify=random,$2" - if [ $test = $1 ] ; then - do_video_filter $test "$vfilters" + do_video_filter $test "$2" fi } @@ -54,7 +52,7 @@ do_lavfi_pixfmts(){ pix_fmts=$($showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts) for pix_fmt in $pix_fmts; do - do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt + do_video_filter $pix_fmt "format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt done rm $exclude_fmts $out_fmts @@ -72,7 +70,7 @@ do_lavfi_pixfmts "vflip" "" if [ -n "$do_pixdesc" ]; then pix_fmts="$($avconv -pix_fmts list 2>/dev/null | awk 'NR > 8 && /^IO/ { print $2 }' | sort)" for pix_fmt in $pix_fmts; do - do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt + do_video_filter $pix_fmt "format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt done fi diff --git a/tests/ref/lavfi/crop_scale_vflip b/tests/ref/lavfi/crop_scale_vflip index 07c729a..29574f7 100644 --- a/tests/ref/lavfi/crop_scale_vflip +++ b/tests/ref/lavfi/crop_scale_vflip @@ -1 +1 @@ -crop_scale_vflip e88a4dfb960d0bb28ee875567bedde5d +crop_scale_vflip 3e2c7694d37733ca52e1723d5262af36 |