diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-11-12 22:57:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-11-12 22:57:07 +0000 |
commit | 87c5fbc37a5bb8efdf55de2e3b15354082c890ef (patch) | |
tree | 14539fbf30441b6f266ab0222acec03f47c5e26d | |
parent | 99f0623629dc0aeb805e7070a1b62c29688ce1bd (diff) | |
download | ffmpeg-87c5fbc37a5bb8efdf55de2e3b15354082c890ef.tar.gz |
switch pnm from imagepipe to image2pipe
Originally committed as revision 3676 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | tests/regression.sh | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tests/regression.sh b/tests/regression.sh index 18f1191acb..a8e3d4be08 100755 --- a/tests/regression.sh +++ b/tests/regression.sh @@ -32,6 +32,8 @@ elif [ "$1" = "mpeg" ] ; then do_mpeg2=y elif [ "$1" = "ac3" ] ; then do_ac3=y +elif [ "$1" = "huffyuv" ] ; then + do_huffyuv=y elif [ "$1" = "libavtest" ] ; then do_libav=y logfile="$datadir/libav.regression" @@ -542,18 +544,18 @@ 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 +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file +do_ffmpeg_crc $file -f image2pipe -i $file # pgmpipe 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 +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file +do_ffmpeg_crc $file -f image2pipe -i $file # ppmpipe 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 +do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f image2pipe $file +do_ffmpeg_crc $file -f image2pipe -i $file # gif file=${outfile}libav.gif |