diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-04 00:47:53 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-05 18:38:48 +0200 |
commit | 55bfb98fc622583a407200c9be2c9e2f39a61950 (patch) | |
tree | bff0c74fe54af7912602afc66f7053c343e5dfda /tests | |
parent | e5272e729e9991c1705f53e0bf421e8026fab0c9 (diff) | |
download | ffmpeg-55bfb98fc622583a407200c9be2c9e2f39a61950.tar.gz |
lavfi-regression: provide filter arguments to showfiltfmts
In do_lavfi_pixfmts(), provide the filter arguments to showfiltfmts,
since some filter may require non-null or non-empty argument string
for working properly.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/lavfi-regression.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh index ed13f7050a..7a5f239675 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -55,7 +55,7 @@ do_lavfi_pixfmts(){ $ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts - pix_fmts=$($showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts) + pix_fmts=$($showfiltfmts $filter $filter_args | 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 done |