[FFmpeg-cvslog] r24644 - trunk/tests/lavfi-regression.sh

stefano subversion
Sun Aug 1 12:27:00 CEST 2010


Author: stefano
Date: Sun Aug  1 12:27:00 2010
New Revision: 24644

Log:
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.

Modified:
   trunk/tests/lavfi-regression.sh

Modified: trunk/tests/lavfi-regression.sh
==============================================================================
--- trunk/tests/lavfi-regression.sh	Sun Aug  1 02:46:11 2010	(r24643)
+++ trunk/tests/lavfi-regression.sh	Sun Aug  1 12:27:00 2010	(r24644)
@@ -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")



More information about the ffmpeg-cvslog mailing list