diff options
author | James Almer <jamrial@gmail.com> | 2019-03-14 17:07:15 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2019-03-14 17:15:28 -0300 |
commit | 85649b6523a69df390956e6739b691e17265e36e (patch) | |
tree | 26f8d5ce15d44bcae8abb14e4f530a7904ef1a9a /tests/fate-run.sh | |
parent | 0dda0f3bdb7e8a2d5bef7457375f72f38a100ccb (diff) | |
download | ffmpeg-85649b6523a69df390956e6739b691e17265e36e.tar.gz |
fate/lavf-image: fix passed arguments for some high bit depth tests
Should fix fate failures on big endian targets.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 4c77b2dc1b..5c2732b912 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -325,9 +325,9 @@ lavf_image(){ outdir="tests/data/images/$t" mkdir -p "$outdir" file=${outdir}/%02d.$t - run_avconv $DEC_OPTS $1 -f image2 -c:v pgmyuv -i $raw_src "$ENC_OPTS -metadata title=lavftest" $2 -frames 13 -y -qscale 10 $target_path/$file + run_avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $1 "$ENC_OPTS -metadata title=lavftest" -frames 13 -y -qscale 10 $target_path/$file do_md5sum ${outdir}/02.$t - do_avconv_crc $file $DEC_OPTS $2 -i $target_path/$file + do_avconv_crc $file $DEC_OPTS $2 -i $target_path/$file $2 echo $(wc -c ${outdir}/02.$t) } |