diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 20:15:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 20:15:42 +0000 |
commit | 9cd81798187567c1495c595443923951c0c06926 (patch) | |
tree | ab1bed1b8a627f75e4aa82e41039293a2c4f51a2 /tests | |
parent | c998bdd9a03d3efa42bfba447579330d51d033fa (diff) | |
download | ffmpeg-9cd81798187567c1495c595443923951c0c06926.tar.gz |
#defines for strict_std_compliance and split between inofficial extensions and non standarized things
Originally committed as revision 4205 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/regression.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 5e478cd067..ded5442c5a 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -290,7 +290,7 @@ file=${outfile}huffyuv.avi do_ffmpeg $file -y -f pgmyuv -i $raw_src -an -vcodec huffyuv -pix_fmt yuv422p $file # huffyuv decoding -do_ffmpeg $raw_dst -y -i $file -f rawvideo -strict -1 -pix_fmt yuv420p $raw_dst +do_ffmpeg $raw_dst -y -i $file -f rawvideo -strict -2 -pix_fmt yuv420p $raw_dst fi ################################### @@ -437,7 +437,7 @@ fi if [ -n "$do_ffv1" ] ; then # ffv1 encoding file=${outfile}ffv1.avi -do_ffmpeg $file -y -strict -1 -f pgmyuv -i $raw_src -an -vcodec ffv1 $file +do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec ffv1 $file # ffv1 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst @@ -447,14 +447,14 @@ fi if [ -n "$do_snow" ] ; then # snow encoding file=${outfile}snow.avi -do_ffmpeg $file -y -strict -1 -f pgmyuv -i $raw_src -an -vcodec snow -qscale 2 $file +do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec snow -qscale 2 $file # snow decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst # snow encoding file=${outfile}snow53.avi -do_ffmpeg $file -y -strict -1 -f pgmyuv -i $raw_src -an -vcodec snow -pred 1 -qpel -4mv $file +do_ffmpeg $file -y -strict -2 -f pgmyuv -i $raw_src -an -vcodec snow -pred 1 -qpel -4mv $file # snow decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst |