#!/bin/sh # # automatic regression test for ffmpeg # # #set -x set -e datadir="./data" logfile="$datadir/ffmpeg.regression" # tests to do if [ "$1" = "mpeg4" ] ; then do_mpeg4=y elif [ "$1" = "mpeg" ] ; then do_mpeg=y elif [ "$1" = "libavtest" ] ; then do_libav=y logfile="$datadir/libav.regression" else do_mpeg=y do_msmpeg4v2=y do_msmpeg4=y do_wmv1=y do_h263=y do_h263p=y do_mpeg4=y do_mjpeg=y do_rv10=y do_mp2=y do_ac3=y do_rc=y do_mpeg4adv=y fi # various files ffmpeg="../ffmpeg_g" outfile="$datadir/a-" reffile="$2" benchfile="$datadir/ffmpeg.bench" raw_src="vsynth1/%d.pgm" raw_dst="$datadir/out.yuv" pcm_src="asynth1.sw" pcm_dst="$datadir/out.wav" # create the data directory if it does not exists mkdir -p $datadir do_ffmpeg() { f="$1" shift echo $ffmpeg -bitexact -dct_algo 1 -idct_algo 2 $* $ffmpeg -bitexact -dct_algo 1 -idct_algo 2 -benchmark $* > $datadir/bench.tmp md5sum -b $f >> $logfile expr "`cat $datadir/bench.tmp`" : '.*utime=\(.*s\)' > $datadir/bench2.tmp echo `cat $datadir/bench2.tmp` $f >> $benchfile } do_ffmpeg_crc() { f="$1" shift echo $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc $ffmpeg -y -bitexact -dct_algo 1 -idct_algo 2 $* -f crc $datadir/ffmpeg.crc echo -n "$f " >> $logfile cat $datadir/ffmpeg.crc >> $logfile } echo "ffmpeg regression test" > $logfile echo "ffmpeg benchmarks" > $benchfile ################################### if [ -n "$do_mpeg" ] ; then # mpeg1 encoding file=${outfile}mpeg1.mpg do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -f mpeg1video $file # mpeg1 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst # mpeg2 decoding #do_ffmpeg /tmp/out-mpeg2.yuv -y -f mpegvideo -i a.vob \ # -f rawvideo /tmp/out-mpeg2.yuv fi ################################### if [ -n "$do_msmpeg4v2" ] ; then # msmpeg4 encoding file=${outfile}msmpeg4v2.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4v2 $file # msmpeg4v2 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_msmpeg4" ] ; then # msmpeg4 encoding file=${outfile}msmpeg4.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec msmpeg4 $file # msmpeg4 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_wmv1" ] ; then # wmv1 encoding file=${outfile}wmv1.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec wmv1 $file # wmv1 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_h263" ] ; then # h263 encoding file=${outfile}h263.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263 $file # h263 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_h263p" ] ; then # h263p encoding file=${outfile}h263p.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -s 352x288 -an -vcodec h263p -ps 1000 $file # h263p decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_mpeg4" ] ; then # mpeg4 file=${outfile}odivx.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file # mpeg4 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_rc" ] ; then # mpeg4 rate control file=${outfile}mpeg4-rc.avi do_ffmpeg $file -y -b 400 -bf 2 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file # mpeg4 rate control decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_mpeg4adv" ] ; then # mpeg4 file=${outfile}mpeg4-adv.avi do_ffmpeg $file -y -qscale 9 -4mv -hq -part -ps 1000 -f pgmyuv -i $raw_src -an -vcodec mpeg4 $file # mpeg4 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_mjpeg" ] ; then # mjpeg file=${outfile}mjpeg.avi do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an -vcodec mjpeg $file # mjpeg decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_rv10" ] ; then # rv10 encoding file=${outfile}rv10.rm do_ffmpeg $file -y -qscale 10 -f pgmyuv -i $raw_src -an $file # rv10 decoding do_ffmpeg $raw_dst -y -i $file -f rawvideo $raw_dst fi ################################### if [ -n "$do_mp2" ] ; then # mp2 encoding file=${outfile}mp2.mp2 do_ffmpeg $file -y -ab 128 -ac 2 -ar 44100 -f s16le -i $pcm_src $file # mp2 decoding do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst fi ################################### if [ -n "$do_ac3" ] ; then # ac3 encoding file=${outfile}ac3.rm do_ffmpeg $file -y -ab 128 -ac 2 -f s16le -i $pcm_src -vn $file # ac3 decoding do_ffmpeg $pcm_dst -y -i $file -f wav $pcm_dst fi ################################### # libav testing ################################### if [ -n "$do_libav" ] ; then # avi file=${outfile}libav.avi do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # asf file=${outfile}libav.asf do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # rm file=${outfile}libav.rm do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file # broken #do_ffmpeg_crc $file -i $file # mpegps file=${outfile}libav.mpg do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # swf (decode audio only) file=${outfile}libav.swf do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # ffm file=${outfile}libav.ffm do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # XXX: need mov and mpegts tests (add bitstreams or add output capability in ffmpeg) #################### # streamed images # mjpeg file=${outfile}libav.mjpeg do_ffmpeg $file -t 1 -y -qscale 10 -f pgmyuv -i $raw_src $file do_ffmpeg_crc $file -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 # 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 # 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 #################### # image formats # pgm (we do not do md5 on image files yet) file=${outfile}libav%d.pgm $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file do_ffmpeg_crc $file -i $file # ppm (we do not do md5 on image files yet) file=${outfile}libav%d.ppm $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file do_ffmpeg_crc $file -i $file # jpeg (we do not do md5 on image files yet) file=${outfile}libav%d.jpg $ffmpeg -t 0.5 -y -qscale 10 -f pgmyuv -i $raw_src $file do_ffmpeg_crc $file -i $file #################### # audio only # wav file=${outfile}libav.wav do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # alaw file=${outfile}libav.al do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # mulaw file=${outfile}libav.ul do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file # au file=${outfile}libav.au do_ffmpeg $file -t 1 -y -qscale 10 -f s16le -i $pcm_src $file do_ffmpeg_crc $file -i $file fi if diff -u $logfile $reffile ; then echo echo Regression test succeeded. exit 0 else echo echo Regression test: Error. exit 1 fi