diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-01 00:46:11 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-01 00:46:11 +0000 |
commit | 0a87d541b75ab771f828499c1b9984abc8c8a0a3 (patch) | |
tree | be1811c014a0879f3d3b2c26ef1597e9b6157b16 /tests | |
parent | 65e17eae3c8b768e3b824ec35a09eab8c0540b43 (diff) | |
download | ffmpeg-0a87d541b75ab771f828499c1b9984abc8c8a0a3.tar.gz |
Put the filter name before the pixel format name in the lavfi pixfmts
test output files, and add a prefix with the name of the test.
Make per-filter grouping of the generated output files easier, which
is more useful than per-pixel-format grouping.
Originally committed as revision 24643 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 9c88df63b8..1e6cd1b1a5 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -78,7 +78,7 @@ 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 - output=${pix_fmt}-${filter}.nut + output=pixfmts-${filter}-${pix_fmt}.nut do_video_encoding $output "" \ "-vf slicify=random,format=$pix_fmt,$filter_args -vcodec rawvideo -pix_fmt $pix_fmt" done |