summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-01 00:46:08 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-01 00:46:08 +0000
commit65e17eae3c8b768e3b824ec35a09eab8c0540b43 (patch)
tree39e394d116a96a0892af3333d35fff27822dbb44 /tests
parentfc25373b1bf86962ff3e7dff1fc8975c0189d36b (diff)
Introduce and use a variable $output in the lavfi pixfmts test code.
Consistent with the lavfi pixdesc test code, and slightly improve readability. Originally committed as revision 24642 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rwxr-xr-xtests/lavfi-regression.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh
index 252a895acd..9c88df63b8 100755
--- a/tests/lavfi-regression.sh
+++ b/tests/lavfi-regression.sh
@@ -78,7 +78,8 @@ if [ -n "$do_pixfmts_be" ] || [ -n "$do_pixfmts_le" ]; then
pix_fmts=$(get_common_elements "$in_pix_fmts" "$scale_out_pix_fmts")
for pix_fmt in $pix_fmts; do
- do_video_encoding "${pix_fmt}-${filter}.nut" "" \
+ output=${pix_fmt}-${filter}.nut
+ do_video_encoding $output "" \
"-vf slicify=random,format=$pix_fmt,$filter_args -vcodec rawvideo -pix_fmt $pix_fmt"
done
done