Browse Source

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
tags/n0.8
Stefano Sabatini 15 years ago
parent
commit
2b346e042e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/lavfi-regression.sh

+ 1
- 1
tests/lavfi-regression.sh View File

@@ -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")


Loading…
Cancel
Save