diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-19 12:04:06 -0800 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-01-21 07:35:54 +0100 |
commit | ce378f0dd0c4e5350b3280e6b3e8d6b46fe4b0a3 (patch) | |
tree | 260162565f73fb25af1baf64b0dad863803abe55 /tests/fate-run.sh | |
parent | 1768e43cebd646174bb1366611da575052989e0a (diff) | |
download | ffmpeg-ce378f0dd0c4e5350b3280e6b3e8d6b46fe4b0a3.tar.gz |
fate: Use wmv2 IDCT for wmv2 tests
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index d1633e8be4..9c23b674c8 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -128,6 +128,7 @@ enc_dec(){ enc_opt=$4 dec_fmt=$5 dec_opt=$6 + ddc_opt=$8 encfile="${outdir}/${test}.${enc_fmt}" decfile="${outdir}/${test}.out.${dec_fmt}" cleanfiles="$cleanfiles $decfile" @@ -139,7 +140,7 @@ enc_dec(){ -f $enc_fmt -y $tencfile || return do_md5sum $encfile echo $(wc -c $encfile) - avconv $DEC_OPTS -i $tencfile $ENC_OPTS $dec_opt $FLAGS \ + avconv $DEC_OPTS $ddc_opt -i $tencfile $ENC_OPTS $dec_opt $FLAGS \ -f $dec_fmt -y $tdecfile || return do_md5sum $decfile tests/tiny_psnr $srcfile $decfile $cmp_unit $cmp_shift |