diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-12-06 19:48:16 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2011-12-06 19:49:33 +0100 |
commit | 6ecc78b707945458e5d126a19a8e7e1bbf2b25ee (patch) | |
tree | 4d55aff08c394106d7b20f6a6bddea30033a58e8 /tests/codec-regression.sh | |
parent | e1ccc9216b5d2bfa0074c208aa5dfa2b05b5ad2a (diff) | |
download | ffmpeg-6ecc78b707945458e5d126a19a8e7e1bbf2b25ee.tar.gz |
Choose compression level 6 for zmbv test.
The default of 9 gives different results on different FATE systems.
However the zlib test using compression level 6 works, so
try this instead.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Diffstat (limited to 'tests/codec-regression.sh')
-rwxr-xr-x | tests/codec-regression.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/codec-regression.sh b/tests/codec-regression.sh index 2d5d690352..c7dea4c6ed 100755 --- a/tests/codec-regression.sh +++ b/tests/codec-regression.sh @@ -330,7 +330,9 @@ do_video_decoding "" "-pix_fmt yuv420p" fi if [ -n "$do_zmbv" ] ; then -do_video_encoding zmbv.avi "-an -vcodec zmbv" +# default level of 9 leads to different results with +# different zlib versions +do_video_encoding zmbv.avi "-an -vcodec zmbv -compression_level 6" do_video_decoding "" "-pix_fmt yuv420p" fi |