diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-01 10:27:00 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-01 10:27:00 +0000 |
commit | 2b346e042ea47f6c8db5c6322ec3ecb57913808a (patch) | |
tree | 0987855a821a197eddfe648bfc89b60a2871f8e6 | |
parent | 0a87d541b75ab771f828499c1b9984abc8c8a0a3 (diff) | |
download | ffmpeg-2b346e042ea47f6c8db5c6322ec3ecb57913808a.tar.gz |
Use the ffmpeg specified in $ffmpeg in the pixfmts lavfi test,
otherwise the test will be running whatever ffmpeg is installed on the
host system.
Originally committed as revision 24644 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 1e6cd1b1a5..9cd5a6ec3d 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -67,7 +67,7 @@ vflip if [ -n "$do_pixfmts_be" ] || [ -n "$do_pixfmts_le" ]; then # exclude pixel formats which are not supported as input - excluded_pix_fmts="$(ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)" + excluded_pix_fmts="$($ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)" scale_out_pix_fmts=$(tools/lavfi-showfiltfmts scale | grep "^OUTPUT" | cut -d: -f2) scale_out_pix_fmts=$(get_exclusive_elements "$scale_out_pix_fmts" "$excluded_pix_fmts") |