diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-09-29 21:53:36 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-09-29 21:53:36 +0000 |
commit | e935fa9e17f0b4b8eb45e355f6f555fa7b4b02cf (patch) | |
tree | c3c3fcaff83b3de006b31103549d9e5ce64d4ab1 | |
parent | a392f82a3ae09e008088e04c610c05eecac52f67 (diff) | |
download | ffmpeg-e935fa9e17f0b4b8eb45e355f6f555fa7b4b02cf.tar.gz |
Prefer -vcodec rawvideo over -vcodec huffyuv for lavfi regression
tests, as the use of huffyuv may cause the auto-insertion of a scale
filter, thus masking the mis-behavior of some filter.
Originally committed as revision 20088 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | tests/codec-regression.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/codec-regression.sh b/tests/codec-regression.sh index fe97d3a04d..65273aa76e 100755 --- a/tests/codec-regression.sh +++ b/tests/codec-regression.sh @@ -668,7 +668,7 @@ do_lavfi() { vfilters=$2 if [ -n "$test" ] ; then - do_video_encoding ${test_name}.avi "-qscale 10" "-vcodec huffyuv -vfilters $vfilters" + do_video_encoding ${test_name}.avi "" "-vcodec rawvideo -vfilters $vfilters" fi } |