2010-03-15 19:23:24 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
2010-08-23 17:34:08 +00:00
|
|
|
export LC_ALL=C
|
|
|
|
|
2010-03-15 19:23:24 +00:00
|
|
|
base=$(dirname $0)
|
|
|
|
. "${base}/md5.sh"
|
|
|
|
|
2010-07-26 23:44:06 +00:00
|
|
|
base64=tests/base64
|
|
|
|
|
2010-03-15 19:23:24 +00:00
|
|
|
test="${1#fate-}"
|
2010-07-18 20:19:16 +00:00
|
|
|
samples=$2
|
2010-03-15 19:23:24 +00:00
|
|
|
target_exec=$3
|
2010-07-18 20:19:16 +00:00
|
|
|
target_path=$4
|
2010-03-15 19:23:24 +00:00
|
|
|
command=$5
|
2010-07-09 00:40:45 +00:00
|
|
|
cmp=${6:-diff}
|
|
|
|
ref=${7:-"${base}/ref/fate/${test}"}
|
2012-03-10 23:50:45 +00:00
|
|
|
fuzz=${8:-1}
|
2011-03-21 23:07:54 +00:00
|
|
|
threads=${9:-1}
|
2011-09-04 08:01:59 +00:00
|
|
|
thread_type=${10:-frame+slice}
|
2012-03-05 07:05:56 +00:00
|
|
|
cpuflags=${11:-all}
|
2012-03-10 23:53:19 +00:00
|
|
|
cmp_shift=${12:-0}
|
2012-03-11 00:33:34 +00:00
|
|
|
cmp_target=${13:-0}
|
2012-03-11 00:52:05 +00:00
|
|
|
size_tolerance=${14:-0}
|
2010-07-17 15:02:32 +00:00
|
|
|
|
2010-03-15 19:23:24 +00:00
|
|
|
outdir="tests/data/fate"
|
|
|
|
outfile="${outdir}/${test}"
|
2010-07-21 20:49:34 +00:00
|
|
|
errfile="${outdir}/${test}.err"
|
2010-07-26 23:44:06 +00:00
|
|
|
cmpfile="${outdir}/${test}.diff"
|
|
|
|
repfile="${outdir}/${test}.rep"
|
2010-03-15 19:23:24 +00:00
|
|
|
|
2012-04-17 15:47:57 +00:00
|
|
|
target_path(){
|
|
|
|
test ${1} = ${1#/} && p=${target_path}/
|
|
|
|
echo ${p}${1}
|
|
|
|
}
|
|
|
|
|
2012-03-11 00:33:34 +00:00
|
|
|
# $1=value1, $2=value2, $3=threshold
|
|
|
|
# prints 0 if absolute difference between value1 and value2 is <= threshold
|
|
|
|
compare(){
|
2012-03-18 17:44:18 +00:00
|
|
|
echo "scale=2; v = $1 - $2; if (v < 0) v = -v; if (v > $3) r = 1; r" | bc
|
2012-03-11 00:33:34 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 15:02:34 +00:00
|
|
|
do_tiny_psnr(){
|
2012-03-10 23:53:19 +00:00
|
|
|
psnr=$(tests/tiny_psnr "$1" "$2" 2 $cmp_shift 0)
|
2010-07-17 15:02:34 +00:00
|
|
|
val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
|
2010-07-10 16:58:00 +00:00
|
|
|
size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
|
|
|
|
size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')
|
2012-03-11 00:33:34 +00:00
|
|
|
val_cmp=$(compare $val $cmp_target $fuzz)
|
2012-03-11 00:52:05 +00:00
|
|
|
size_cmp=$(compare $size1 $size2 $size_tolerance)
|
|
|
|
if [ "$val_cmp" != 0 ] || [ "$size_cmp" != 0 ]; then
|
2010-07-09 00:40:51 +00:00
|
|
|
echo "$psnr"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-07-17 15:02:34 +00:00
|
|
|
oneoff(){
|
2012-03-11 00:33:34 +00:00
|
|
|
do_tiny_psnr "$1" "$2" MAXDIFF
|
2010-07-17 15:02:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stddev(){
|
2012-03-11 00:33:34 +00:00
|
|
|
do_tiny_psnr "$1" "$2" stddev
|
2010-07-17 15:02:34 +00:00
|
|
|
}
|
|
|
|
|
2010-08-04 06:56:59 +00:00
|
|
|
run(){
|
2010-09-23 09:55:31 +00:00
|
|
|
test "${V:-0}" -gt 0 && echo "$target_exec" $target_path/"$@" >&3
|
2010-08-04 06:56:59 +00:00
|
|
|
$target_exec $target_path/"$@"
|
|
|
|
}
|
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv(){
|
2012-03-07 01:57:53 +00:00
|
|
|
run ffmpeg -nostats -threads $threads -thread_type $thread_type -cpuflags $cpuflags "$@"
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
framecrc(){
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv "$@" -f framecrc -
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
framemd5(){
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv "$@" -f framemd5 -
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
crc(){
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv "$@" -f crc -
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
md5(){
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv "$@" md5:
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pcm(){
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv "$@" -vn -f s16le -
|
2010-07-18 20:19:30 +00:00
|
|
|
}
|
|
|
|
|
2012-03-10 21:37:41 +00:00
|
|
|
enc_dec_pcm(){
|
|
|
|
out_fmt=$1
|
2012-04-17 15:47:57 +00:00
|
|
|
dec_fmt=$2
|
|
|
|
pcm_fmt=$3
|
|
|
|
src_file=$(target_path $4)
|
|
|
|
shift 4
|
2012-03-10 21:37:41 +00:00
|
|
|
encfile="${outdir}/${test}.${out_fmt}"
|
|
|
|
cleanfiles=$encfile
|
2012-04-17 15:47:57 +00:00
|
|
|
encfile=$(target_path ${encfile})
|
|
|
|
avconv -i $src_file "$@" -f $out_fmt -y ${encfile} || return
|
2012-04-19 18:46:37 +00:00
|
|
|
avconv -i ${encfile} -c:a pcm_${pcm_fmt} -f ${dec_fmt} -
|
2012-03-10 21:37:41 +00:00
|
|
|
}
|
|
|
|
|
2010-07-20 10:19:28 +00:00
|
|
|
regtest(){
|
|
|
|
t="${test#$2-}"
|
|
|
|
ref=${base}/ref/$2/$t
|
2012-03-07 01:57:53 +00:00
|
|
|
${base}/${1}-regression.sh $t $2 $3 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags" "$samples"
|
2010-07-20 10:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
codectest(){
|
|
|
|
regtest codec $1 tests/$1
|
|
|
|
}
|
|
|
|
|
2012-02-12 10:52:10 +00:00
|
|
|
lavffatetest(){
|
|
|
|
regtest lavf lavf-fate tests/vsynth1
|
|
|
|
}
|
|
|
|
|
2010-07-20 10:19:28 +00:00
|
|
|
lavftest(){
|
|
|
|
regtest lavf lavf tests/vsynth1
|
|
|
|
}
|
|
|
|
|
|
|
|
lavfitest(){
|
2010-07-24 17:13:32 +00:00
|
|
|
cleanfiles="tests/data/lavfi/${test#lavfi-}.nut"
|
2010-07-20 10:19:28 +00:00
|
|
|
regtest lavfi lavfi tests/vsynth1
|
|
|
|
}
|
|
|
|
|
|
|
|
seektest(){
|
|
|
|
t="${test#seek-}"
|
|
|
|
ref=${base}/ref/seek/$t
|
|
|
|
case $t in
|
|
|
|
image_*) file="tests/data/images/${t#image_}/%02d.${t#image_}" ;;
|
|
|
|
*) file=$(echo $t | tr _ '?')
|
|
|
|
for d in acodec vsynth2 lavf; do
|
|
|
|
test -f tests/data/$d/$file && break
|
|
|
|
done
|
|
|
|
file=$(echo tests/data/$d/$file)
|
|
|
|
;;
|
|
|
|
esac
|
2011-09-28 01:13:31 +00:00
|
|
|
run libavformat/seek-test $target_path/$file
|
2010-07-20 10:19:28 +00:00
|
|
|
}
|
2010-07-09 23:55:16 +00:00
|
|
|
|
2010-03-15 19:23:24 +00:00
|
|
|
mkdir -p "$outdir"
|
|
|
|
|
2010-09-23 09:55:31 +00:00
|
|
|
exec 3>&2
|
2010-07-21 20:49:34 +00:00
|
|
|
$command > "$outfile" 2>$errfile
|
2010-07-20 12:54:43 +00:00
|
|
|
err=$?
|
2010-07-09 00:40:45 +00:00
|
|
|
|
2010-07-31 16:53:09 +00:00
|
|
|
if [ $err -gt 128 ]; then
|
|
|
|
sig=$(kill -l $err 2>/dev/null)
|
2010-08-01 12:29:03 +00:00
|
|
|
test "${sig}" = "${sig%[!A-Za-z]*}" || unset sig
|
2010-07-31 16:53:09 +00:00
|
|
|
fi
|
|
|
|
|
2010-07-26 23:44:06 +00:00
|
|
|
if test -e "$ref"; then
|
|
|
|
case $cmp in
|
|
|
|
diff) diff -u -w "$ref" "$outfile" >$cmpfile ;;
|
2012-03-10 23:50:45 +00:00
|
|
|
oneoff) oneoff "$ref" "$outfile" >$cmpfile ;;
|
|
|
|
stddev) stddev "$ref" "$outfile" >$cmpfile ;;
|
2011-07-03 23:56:38 +00:00
|
|
|
null) cat "$outfile" >$cmpfile ;;
|
2010-07-26 23:44:06 +00:00
|
|
|
esac
|
|
|
|
cmperr=$?
|
|
|
|
test $err = 0 && err=$cmperr
|
|
|
|
test $err = 0 || cat $cmpfile
|
|
|
|
else
|
2010-07-20 10:19:28 +00:00
|
|
|
echo "reference file '$ref' not found"
|
2010-07-26 23:44:06 +00:00
|
|
|
err=1
|
2010-07-20 10:19:28 +00:00
|
|
|
fi
|
|
|
|
|
2010-07-31 16:53:09 +00:00
|
|
|
echo "${test}:${sig:-$err}:$($base64 <$cmpfile):$($base64 <$errfile)" >$repfile
|
2010-07-09 23:36:04 +00:00
|
|
|
|
2011-12-22 17:17:13 +00:00
|
|
|
if test $err = 0; then
|
|
|
|
rm -f $outfile $errfile $cmpfile $cleanfiles
|
|
|
|
else
|
|
|
|
echo "Test $test failed. Look at $errfile for details."
|
|
|
|
fi
|
2010-07-26 23:44:06 +00:00
|
|
|
exit $err
|