diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 05:32:29 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-11 05:32:29 +0000 |
commit | 7481e91982c45c22a650fd6d2bc3449edea6b634 (patch) | |
tree | 1e363aebf23227ea5b77fd0cb660c6d5c54d2f2c /tests/regression.sh | |
parent | 3c27199b8f38915bb69833ed8d2514bbbbb13f1a (diff) | |
download | ffmpeg-7481e91982c45c22a650fd6d2bc3449edea6b634.tar.gz |
more formats
Originally committed as revision 1442 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/regression.sh')
-rwxr-xr-x | tests/regression.sh | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 6f29894728..e1cd8138f7 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -15,6 +15,8 @@ if [ "$1" = "mpeg4" ] ; then do_mpeg4=y elif [ "$1" = "mpeg" ] ; then do_mpeg=y +elif [ "$1" = "ac3" ] ; then + do_ac3=y elif [ "$1" = "libavtest" ] ; then do_libav=y logfile="$datadir/libav.regression" @@ -252,20 +254,30 @@ file=${outfile}libav.mjpeg do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file do_ffmpeg_crc $file -i $file +# pbmpipe +file=${outfile}libav.pbm +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file +do_ffmpeg_crc $file -f imagepipe -i $file + # pgmpipe -file=${outfile}libav.pgmpipe -do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f pgmpipe $file -do_ffmpeg_crc $file -f pgmpipe -i $file +file=${outfile}libav.pgm +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file +do_ffmpeg_crc $file -f imagepipe -i $file # ppmpipe -file=${outfile}libav.ppmpipe -do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f ppmpipe $file -do_ffmpeg_crc $file -f ppmpipe -i $file +file=${outfile}libav.ppm +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f imagepipe $file +do_ffmpeg_crc $file -f imagepipe -i $file # gif file=${outfile}libav.gif -do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f ppmpipe $file -#do_ffmpeg_crc $file -f ppmpipe -i $file +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file +#do_ffmpeg_crc $file -i $file + +# yuv4mpeg +file=${outfile}libav.yuv4mpeg +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file +#do_ffmpeg_crc $file -i $file #################### # image formats |