diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-11 00:44:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-12 12:29:47 +0200 |
commit | 37efad4e5b6631ad902e8ae3d19e850037d22efb (patch) | |
tree | 0d77d334db28696df44118063698b52e676b88e1 /tests/fate-run.sh | |
parent | 2ce2462ba8575ce16363064aecfc9fe2f4396bba (diff) | |
download | ffmpeg-37efad4e5b6631ad902e8ae3d19e850037d22efb.tar.gz |
fate: Test pullup and fieldmatch with 5 instead of 1 frame
Reviewed-by: Clément Bœsch <u@pkh.me>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index f795fdf4b9..b88730a47e 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -195,6 +195,7 @@ pixfmts(){ filter=${filter%_*} filter_args=$1 prefilter_chain=$2 + nframes=${3:-1} showfiltfmts="$target_exec $target_path/libavfilter/filtfmts-test" scale_exclude_fmts=${outfile}_scale_exclude_fmts @@ -213,7 +214,7 @@ pixfmts(){ outertest=$test for pix_fmt in $pix_fmts; do test=$pix_fmt - video_filter "${prefilter_chain}format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt -frames:v 1 + video_filter "${prefilter_chain}format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt -frames:v $nframes done rm $in_fmts $scale_in_fmts $scale_out_fmts $scale_exclude_fmts |