2009-10-23 22:49:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# common regression functions for ffmpeg
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
test="${1#regtest-}"
|
|
|
|
test_ref=$2
|
|
|
|
raw_src_dir=$3
|
2010-03-02 21:42:03 +00:00
|
|
|
target_exec=$4
|
|
|
|
target_path=$5
|
2011-03-21 23:07:54 +00:00
|
|
|
threads=${6:-1}
|
2009-10-23 22:49:05 +00:00
|
|
|
|
|
|
|
datadir="./tests/data"
|
|
|
|
target_datadir="${target_path}/${datadir}"
|
|
|
|
|
|
|
|
this="$test.$test_ref"
|
2010-07-08 22:10:14 +00:00
|
|
|
logdir="$datadir/regression/$test_ref"
|
|
|
|
logfile="$logdir/$test"
|
2010-03-02 21:41:52 +00:00
|
|
|
outfile="$datadir/$test_ref/"
|
2010-01-16 20:17:55 +00:00
|
|
|
errfile="$datadir/$this.err"
|
2009-10-23 22:49:05 +00:00
|
|
|
|
|
|
|
# various files
|
2010-02-17 21:37:35 +00:00
|
|
|
ffmpeg="$target_exec ${target_path}/ffmpeg"
|
2009-10-23 22:49:05 +00:00
|
|
|
tiny_psnr="tests/tiny_psnr"
|
|
|
|
benchfile="$datadir/$this.bench"
|
|
|
|
bench="$datadir/$this.bench.tmp"
|
|
|
|
bench2="$datadir/$this.bench2.tmp"
|
|
|
|
raw_src="${target_path}/$raw_src_dir/%02d.pgm"
|
|
|
|
raw_dst="$datadir/$this.out.yuv"
|
|
|
|
raw_ref="$datadir/$test_ref.ref.yuv"
|
|
|
|
pcm_src="$target_datadir/asynth1.sw"
|
|
|
|
pcm_dst="$datadir/$this.out.wav"
|
|
|
|
pcm_ref="$datadir/$test_ref.ref.wav"
|
|
|
|
crcfile="$datadir/$this.crc"
|
|
|
|
target_crcfile="$target_datadir/$this.crc"
|
|
|
|
|
2010-07-21 20:49:41 +00:00
|
|
|
cleanfiles="$raw_dst $pcm_dst $crcfile $bench $bench2"
|
|
|
|
trap 'rm -f -- $cleanfiles' EXIT
|
|
|
|
|
2010-01-30 21:47:13 +00:00
|
|
|
mkdir -p "$datadir"
|
2010-03-02 21:41:52 +00:00
|
|
|
mkdir -p "$outfile"
|
2010-07-08 22:10:14 +00:00
|
|
|
mkdir -p "$logdir"
|
2010-01-30 21:47:13 +00:00
|
|
|
|
2010-09-23 09:55:31 +00:00
|
|
|
(exec >&3) 2>/dev/null || exec 3>&2
|
|
|
|
|
|
|
|
[ "${V-0}" -gt 0 ] && echov=echov || echov=:
|
2010-01-16 20:17:55 +00:00
|
|
|
[ "${V-0}" -gt 1 ] || exec 2>$errfile
|
|
|
|
|
2010-09-23 09:55:31 +00:00
|
|
|
echov(){
|
|
|
|
echo "$@" >&3
|
|
|
|
}
|
|
|
|
|
2010-03-08 00:26:58 +00:00
|
|
|
. $(dirname $0)/md5.sh
|
2009-10-23 22:49:05 +00:00
|
|
|
|
2011-03-21 23:07:54 +00:00
|
|
|
FFMPEG_OPTS="-v 0 -threads $threads -y -flags +bitexact -dct fastint -idct simple -sws_flags +accurate_rnd+bitexact"
|
2009-10-23 22:49:05 +00:00
|
|
|
|
2011-01-21 21:31:21 +00:00
|
|
|
run_ffmpeg()
|
|
|
|
{
|
|
|
|
$echov $ffmpeg $FFMPEG_OPTS $*
|
|
|
|
$ffmpeg $FFMPEG_OPTS $*
|
|
|
|
}
|
|
|
|
|
2009-10-23 22:49:05 +00:00
|
|
|
do_ffmpeg()
|
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
|
|
|
set -- $* ${target_path}/$f
|
2011-03-21 23:13:48 +00:00
|
|
|
run_ffmpeg -benchmark $* > $bench
|
2009-10-23 22:49:05 +00:00
|
|
|
do_md5sum $f >> $logfile
|
|
|
|
if [ $f = $raw_dst ] ; then
|
|
|
|
$tiny_psnr $f $raw_ref >> $logfile
|
|
|
|
elif [ $f = $pcm_dst ] ; then
|
|
|
|
$tiny_psnr $f $pcm_ref 2 >> $logfile
|
|
|
|
else
|
|
|
|
wc -c $f >> $logfile
|
|
|
|
fi
|
2009-12-26 11:24:04 +00:00
|
|
|
expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
|
|
|
|
echo $(cat $bench2) $f >> $benchfile
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_ffmpeg_nomd5()
|
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
|
|
|
set -- $* ${target_path}/$f
|
2011-03-21 23:13:48 +00:00
|
|
|
run_ffmpeg -benchmark $* > $bench
|
2009-10-23 22:49:05 +00:00
|
|
|
if [ $f = $raw_dst ] ; then
|
|
|
|
$tiny_psnr $f $raw_ref >> $logfile
|
|
|
|
elif [ $f = $pcm_dst ] ; then
|
|
|
|
$tiny_psnr $f $pcm_ref 2 >> $logfile
|
|
|
|
else
|
|
|
|
wc -c $f >> $logfile
|
|
|
|
fi
|
2009-12-26 11:24:04 +00:00
|
|
|
expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
|
|
|
|
echo $(cat $bench2) $f >> $benchfile
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_ffmpeg_crc()
|
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2011-03-21 23:13:48 +00:00
|
|
|
run_ffmpeg $* -f crc "$target_crcfile"
|
2009-12-26 11:24:04 +00:00
|
|
|
echo "$f $(cat $crcfile)" >> $logfile
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_ffmpeg_nocheck()
|
|
|
|
{
|
|
|
|
f="$1"
|
|
|
|
shift
|
2011-03-21 23:13:48 +00:00
|
|
|
run_ffmpeg -benchmark $* > $bench
|
2009-12-26 11:24:04 +00:00
|
|
|
expr "$(cat $bench)" : '.*utime=\(.*s\)' > $bench2
|
|
|
|
echo $(cat $bench2) $f >> $benchfile
|
2009-10-23 22:49:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_video_decoding()
|
|
|
|
{
|
|
|
|
do_ffmpeg $raw_dst $1 -i $target_path/$file -f rawvideo $2
|
|
|
|
}
|
|
|
|
|
|
|
|
do_video_encoding()
|
|
|
|
{
|
|
|
|
file=${outfile}$1
|
|
|
|
do_ffmpeg $file $2 -f image2 -vcodec pgmyuv -i $raw_src $3
|
|
|
|
}
|
|
|
|
|
|
|
|
do_audio_encoding()
|
|
|
|
{
|
|
|
|
file=${outfile}$1
|
|
|
|
do_ffmpeg $file -ab 128k -ac 2 -f s16le -i $pcm_src $3
|
|
|
|
}
|
|
|
|
|
|
|
|
do_audio_decoding()
|
|
|
|
{
|
|
|
|
do_ffmpeg $pcm_dst -i $target_path/$file -sample_fmt s16 -f wav
|
|
|
|
}
|