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}
|
2012-05-17 18:14:17 +00:00
|
|
|
cmp_unit=${15:-2}
|
2013-03-18 22:45:58 +00:00
|
|
|
gen=${16:-no}
|
2015-03-09 09:56:54 +00:00
|
|
|
hwaccel=${17:-none}
|
2016-12-27 22:19:49 +00:00
|
|
|
report_type=${18:-standard}
|
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(){
|
2015-01-19 21:56:59 +00:00
|
|
|
awk "BEGIN { v = $1 - $2; printf ((v < 0 ? -v : v) > $3) }"
|
2012-03-11 00:33:34 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 15:02:34 +00:00
|
|
|
do_tiny_psnr(){
|
2012-05-17 18:14:17 +00:00
|
|
|
psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $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
|
|
|
}
|
|
|
|
|
2012-05-03 22:43:11 +00:00
|
|
|
oneline(){
|
2012-05-15 10:52:28 +00:00
|
|
|
printf '%s\n' "$1" | diff -u -b - "$2"
|
2012-05-03 22:43:11 +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/"$@"
|
|
|
|
}
|
|
|
|
|
2012-05-03 18:01:00 +00:00
|
|
|
probefmt(){
|
|
|
|
run avprobe -show_format_entry format_name -v 0 "$@"
|
|
|
|
}
|
|
|
|
|
2016-10-24 21:22:55 +00:00
|
|
|
probestream(){
|
|
|
|
run avprobe -show_stream_entry "$1" -v 0 "$2"
|
|
|
|
}
|
|
|
|
|
2011-07-27 18:56:59 +00:00
|
|
|
avconv(){
|
2015-03-09 09:56:54 +00:00
|
|
|
dec_opts="-hwaccel $hwaccel -threads $threads -thread_type $thread_type"
|
2012-05-29 09:41:55 +00:00
|
|
|
avconv_args="-nostats -cpuflags $cpuflags"
|
|
|
|
for arg in $@; do
|
2012-12-04 15:53:01 +00:00
|
|
|
[ x${arg} = x-i ] && avconv_args="${avconv_args} ${dec_opts}"
|
2012-05-29 09:41:55 +00:00
|
|
|
avconv_args="${avconv_args} ${arg}"
|
|
|
|
done
|
|
|
|
run avconv ${avconv_args}
|
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
|
|
|
|
avconv -f $out_fmt -i ${encfile} -c:a pcm_${pcm_fmt} -f ${dec_fmt} -
|
2012-03-10 21:37:41 +00:00
|
|
|
}
|
|
|
|
|
2014-05-01 08:43:10 +00:00
|
|
|
FLAGS="-flags +bitexact -sws_flags +accurate_rnd+bitexact -fflags +bitexact"
|
2012-05-18 09:33:28 +00:00
|
|
|
DEC_OPTS="-threads $threads -idct simple $FLAGS"
|
|
|
|
ENC_OPTS="-threads 1 -idct simple -dct fastint"
|
|
|
|
|
|
|
|
enc_dec(){
|
|
|
|
src_fmt=$1
|
|
|
|
srcfile=$2
|
|
|
|
enc_fmt=$3
|
|
|
|
enc_opt=$4
|
|
|
|
dec_fmt=$5
|
|
|
|
dec_opt=$6
|
|
|
|
encfile="${outdir}/${test}.${enc_fmt}"
|
|
|
|
decfile="${outdir}/${test}.out.${dec_fmt}"
|
|
|
|
cleanfiles="$cleanfiles $decfile"
|
|
|
|
test "$7" = -keep || cleanfiles="$cleanfiles $encfile"
|
|
|
|
tsrcfile=$(target_path $srcfile)
|
|
|
|
tencfile=$(target_path $encfile)
|
|
|
|
tdecfile=$(target_path $decfile)
|
|
|
|
avconv -f $src_fmt $DEC_OPTS -i $tsrcfile $ENC_OPTS $enc_opt $FLAGS \
|
|
|
|
-f $enc_fmt -y $tencfile || return
|
|
|
|
do_md5sum $encfile
|
|
|
|
echo $(wc -c $encfile)
|
2013-01-21 18:43:53 +00:00
|
|
|
avconv $DEC_OPTS -i $tencfile $ENC_OPTS $dec_opt $FLAGS \
|
2012-05-18 09:33:28 +00:00
|
|
|
-f $dec_fmt -y $tdecfile || return
|
|
|
|
do_md5sum $decfile
|
|
|
|
tests/tiny_psnr $srcfile $decfile $cmp_unit $cmp_shift
|
|
|
|
}
|
|
|
|
|
2010-07-20 10:19:28 +00:00
|
|
|
lavftest(){
|
2013-05-06 16:35:34 +00:00
|
|
|
t="${test#lavf-}"
|
|
|
|
ref=${base}/ref/lavf/$t
|
|
|
|
${base}/lavf-regression.sh $t lavf tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags"
|
2010-07-20 10:19:28 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 21:39:08 +00:00
|
|
|
video_filter(){
|
|
|
|
filters=$1
|
|
|
|
shift
|
|
|
|
label=${test#filter-}
|
|
|
|
raw_src="${target_path}/tests/vsynth1/%02d.pgm"
|
|
|
|
printf '%-20s' $label
|
2012-10-18 08:15:07 +00:00
|
|
|
avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src \
|
|
|
|
$FLAGS $ENC_OPTS -vf "$filters" -c:v rawvideo -frames:v 5 $* -f nut md5:
|
2013-04-15 21:39:08 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 23:42:38 +00:00
|
|
|
pixfmts(){
|
|
|
|
filter=${test#filter-pixfmts-}
|
|
|
|
filter_args=$1
|
|
|
|
|
2016-04-20 09:40:40 +00:00
|
|
|
showfiltfmts="$target_exec $target_path/libavfilter/tests/filtfmts"
|
2013-04-15 23:42:38 +00:00
|
|
|
exclude_fmts=${outfile}${filter}_exclude_fmts
|
|
|
|
out_fmts=${outfile}${filter}_out_fmts
|
|
|
|
|
|
|
|
# exclude pixel formats which are not supported as input
|
|
|
|
avconv -pix_fmts list 2>/dev/null | awk 'NR > 8 && /^\..\./ { print $2 }' | sort >$exclude_fmts
|
|
|
|
$showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts
|
|
|
|
|
|
|
|
pix_fmts=$($showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts)
|
2015-04-20 03:37:43 +00:00
|
|
|
|
|
|
|
outertest=$test
|
2013-04-15 23:42:38 +00:00
|
|
|
for pix_fmt in $pix_fmts; do
|
|
|
|
test=$pix_fmt
|
2015-05-09 21:44:30 +00:00
|
|
|
video_filter "format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt -frames:v 1
|
2013-04-15 23:42:38 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
rm $exclude_fmts $out_fmts
|
2015-04-20 03:37:43 +00:00
|
|
|
test=$outertest
|
2013-04-15 23:42:38 +00:00
|
|
|
}
|
|
|
|
|
2012-10-05 12:46:38 +00:00
|
|
|
null(){
|
|
|
|
:
|
|
|
|
}
|
|
|
|
|
2010-03-15 19:23:24 +00:00
|
|
|
mkdir -p "$outdir"
|
|
|
|
|
2010-09-23 09:55:31 +00:00
|
|
|
exec 3>&2
|
2012-05-18 09:33:28 +00:00
|
|
|
eval $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
|
|
|
|
|
2012-10-15 13:38:29 +00:00
|
|
|
if test -e "$ref" || test $cmp = "oneline" || test $cmp = "null" ; then
|
2010-07-26 23:44:06 +00:00
|
|
|
case $cmp in
|
2012-05-14 21:31:08 +00:00
|
|
|
diff) diff -u -b "$ref" "$outfile" >$cmpfile ;;
|
2012-03-10 23:50:45 +00:00
|
|
|
oneoff) oneoff "$ref" "$outfile" >$cmpfile ;;
|
|
|
|
stddev) stddev "$ref" "$outfile" >$cmpfile ;;
|
2012-05-03 22:43:11 +00:00
|
|
|
oneline)oneline "$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
|
2016-12-27 22:19:49 +00:00
|
|
|
if [ "$report_type" = "ignore" ]; then
|
2016-12-29 12:20:51 +00:00
|
|
|
test $err = 0 || echo "IGNORE\t${test}" && err=0 && unset sig
|
2016-12-27 22:19:49 +00:00
|
|
|
else
|
|
|
|
test $err = 0 || cat $cmpfile
|
|
|
|
fi
|
2010-07-26 23:44:06 +00:00
|
|
|
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
|
|
|
|
|
2016-12-27 22:19:49 +00:00
|
|
|
if [ $err -eq 0 ] && test $report_type = "standard" ; then
|
2015-04-10 17:36:03 +00:00
|
|
|
unset cmpo erro
|
|
|
|
else
|
|
|
|
cmpo="$($base64 <$cmpfile)"
|
|
|
|
erro="$($base64 <$errfile)"
|
|
|
|
fi
|
|
|
|
echo "${test}:${sig:-$err}:$cmpo:$erro" >$repfile
|
2010-07-09 23:36:04 +00:00
|
|
|
|
2013-03-18 22:45:58 +00:00
|
|
|
if test $err != 0 && test $gen != "no" ; then
|
|
|
|
echo "GEN $ref"
|
|
|
|
cp -f "$outfile" "$ref"
|
|
|
|
err=$?
|
|
|
|
fi
|
|
|
|
|
2010-07-26 23:44:06 +00:00
|
|
|
test $err = 0 && rm -f $outfile $errfile $cmpfile $cleanfiles
|
|
|
|
exit $err
|