]> git.sesse.net Git - ffmpeg/blob - tests/fate-run.sh
tests: Convert lavf image tests to non-legacy test scripts
[ffmpeg] / tests / fate-run.sh
1 #! /bin/sh
2
3 export LC_ALL=C
4
5 base=$(dirname $0)
6 . "${base}/md5.sh"
7
8 base64=tests/base64
9
10 test="${1#fate-}"
11 samples=$2
12 target_exec=$3
13 target_path=$4
14 command=$5
15 cmp=${6:-diff}
16 ref=${7:-"${base}/ref/fate/${test}"}
17 fuzz=${8:-1}
18 threads=${9:-1}
19 thread_type=${10:-frame+slice}
20 cpuflags=${11:-all}
21 cmp_shift=${12:-0}
22 cmp_target=${13:-0}
23 size_tolerance=${14:-0}
24 cmp_unit=${15:-2}
25 gen=${16:-no}
26 hwaccel=${17:-none}
27 report_type=${18:-standard}
28
29 outdir="tests/data/fate"
30 outfile="${outdir}/${test}"
31 errfile="${outdir}/${test}.err"
32 cmpfile="${outdir}/${test}.diff"
33 repfile="${outdir}/${test}.rep"
34
35 target_path(){
36     test ${1} = ${1#/} && p=${target_path}/
37     echo ${p}${1}
38 }
39
40 # $1=value1, $2=value2, $3=threshold
41 # prints 0 if absolute difference between value1 and value2 is <= threshold
42 compare(){
43     awk "BEGIN { v = $1 - $2; printf ((v < 0 ? -v : v) > $3) }"
44 }
45
46 do_tiny_psnr(){
47     psnr=$(tests/tiny_psnr "$1" "$2" $cmp_unit $cmp_shift 0)
48     val=$(expr "$psnr" : ".*$3: *\([0-9.]*\)")
49     size1=$(expr "$psnr" : '.*bytes: *\([0-9]*\)')
50     size2=$(expr "$psnr" : '.*bytes:[ 0-9]*/ *\([0-9]*\)')
51     val_cmp=$(compare $val $cmp_target $fuzz)
52     size_cmp=$(compare $size1 $size2 $size_tolerance)
53     if [ "$val_cmp" != 0 ] || [ "$size_cmp" != 0 ]; then
54         echo "$psnr"
55         return 1
56     fi
57 }
58
59 oneoff(){
60     do_tiny_psnr "$1" "$2" MAXDIFF
61 }
62
63 stddev(){
64     do_tiny_psnr "$1" "$2" stddev
65 }
66
67 oneline(){
68     printf '%s\n' "$1" | diff -u -b - "$2"
69 }
70
71 run(){
72     test "${V:-0}" -gt 0 && echo "$target_exec" $target_path/"$@" >&3
73     $target_exec $target_path/"$@"
74 }
75
76 probefmt(){
77     run avprobe -show_format_entry format_name -v 0 "$@"
78 }
79
80 probestream(){
81     run avprobe -show_stream_entry "$1" -v 0 "$2"
82 }
83
84 avconv(){
85     dec_opts="-hwaccel $hwaccel -threads $threads -thread_type $thread_type"
86     avconv_args="-nostats -cpuflags $cpuflags"
87     for arg in $@; do
88         [ x${arg} = x-i ] && avconv_args="${avconv_args} ${dec_opts}"
89         avconv_args="${avconv_args} ${arg}"
90     done
91     run avconv ${avconv_args}
92 }
93
94 framecrc(){
95     avconv "$@" -f framecrc -
96 }
97
98 framemd5(){
99     avconv "$@" -f framemd5 -
100 }
101
102 crc(){
103     avconv "$@" -f crc -
104 }
105
106 md5(){
107     avconv "$@" md5:
108 }
109
110 pcm(){
111     avconv "$@" -vn -f s16le -
112 }
113
114 enc_dec_pcm(){
115     out_fmt=$1
116     dec_fmt=$2
117     pcm_fmt=$3
118     src_file=$(target_path $4)
119     shift 4
120     encfile="${outdir}/${test}.${out_fmt}"
121     cleanfiles=$encfile
122     encfile=$(target_path ${encfile})
123     avconv -i $src_file "$@" -f $out_fmt -y ${encfile} || return
124     avconv -f $out_fmt -i ${encfile} -c:a pcm_${pcm_fmt} -f ${dec_fmt} -
125 }
126
127 FLAGS="-flags +bitexact -sws_flags +accurate_rnd+bitexact -fflags +bitexact"
128 DEC_OPTS="-threads $threads -idct simple $FLAGS"
129 ENC_OPTS="-threads 1        -idct simple -dct fastint"
130
131 enc_dec(){
132     src_fmt=$1
133     srcfile=$2
134     enc_fmt=$3
135     enc_opt=$4
136     dec_fmt=$5
137     dec_opt=$6
138     encfile="${outdir}/${test}.${enc_fmt}"
139     decfile="${outdir}/${test}.out.${dec_fmt}"
140     cleanfiles="$cleanfiles $decfile"
141     test "$7" = -keep || cleanfiles="$cleanfiles $encfile"
142     tsrcfile=$(target_path $srcfile)
143     tencfile=$(target_path $encfile)
144     tdecfile=$(target_path $decfile)
145     avconv -f $src_fmt $DEC_OPTS -i $tsrcfile $ENC_OPTS $enc_opt $FLAGS \
146         -f $enc_fmt -y $tencfile || return
147     do_md5sum $encfile
148     echo $(wc -c $encfile)
149     avconv $DEC_OPTS -i $tencfile $ENC_OPTS $dec_opt $FLAGS \
150         -f $dec_fmt -y $tdecfile || return
151     do_md5sum $decfile
152     tests/tiny_psnr $srcfile $decfile $cmp_unit $cmp_shift
153 }
154
155 # FIXME: There is a certain duplication between the avconv-related helper
156 # functions above and below that should be refactored.
157 avconv2="$target_exec ${target_path}/avconv"
158 raw_src="${target_path}/tests/vsynth1/%02d.pgm"
159 pcm_src="${target_path}/tests/data/asynth1.sw"
160 crcfile="tests/data/$test.lavf.crc"
161 target_crcfile="${target_path}/$crcfile"
162
163 echov(){
164     echo "$@" >&3
165 }
166
167 AVCONV_OPTS="-nostats -y -cpuflags $cpuflags -threads $threads"
168 DEC_OPTS="-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact -fflags +bitexact"
169 ENC_OPTS="$DEC_OPTS -threads 1 -dct fastint"
170
171 run_avconv(){
172     $echov $avconv2 $AVCONV_OPTS $*
173     $avconv2 $AVCONV_OPTS $*
174 }
175
176 do_avconv(){
177     f="$1"
178     shift
179     set -- $* ${target_path}/$f
180     run_avconv $*
181     do_md5sum $f
182     echo $(wc -c $f)
183 }
184
185 do_avconv_crc(){
186     f="$1"
187     shift
188     run_avconv $* -f crc "$target_crcfile"
189     echo "$f $(cat $crcfile)"
190 }
191
192 lavf_audio(){
193     t="${test#lavf-}"
194     outdir="tests/data/lavf"
195     file=${outdir}/lavf.$t
196     do_avconv $file $DEC_OPTS $1 -ar 44100 -f s16le -i $pcm_src $ENC_OPTS -t 1 -qscale 10 $2
197     do_avconv_crc $file $DEC_OPTS $3 -i $target_path/$file
198 }
199
200 lavf_image(){
201     t="${test#lavf-}"
202     outdir="tests/data/images/$t"
203     mkdir -p "$outdir"
204     file=${outdir}/%02d.$t
205     run_avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src $1 $ENC_OPTS $2 -frames 12 -y -qscale 10 $target_path/$file
206     do_md5sum ${outdir}/02.$t
207     do_avconv_crc $file $DEC_OPTS $2 -i $target_path/$file
208     echo $(wc -c ${outdir}/02.$t)
209 }
210
211 lavf_image2pipe(){
212     t="${test#lavf-}"
213     t="${t%pipe}"
214     outdir="tests/data/lavf"
215     file=${outdir}/${t}pipe.$t
216     do_avconv $file $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src -f image2pipe $ENC_OPTS -t 1 -qscale 10
217     do_avconv_crc $file $DEC_OPTS -f image2pipe -i $target_path/$file
218 }
219
220 lavftest(){
221     t="${test#lavf-}"
222     ref=${base}/ref/lavf/$t
223     ${base}/lavf-regression.sh $t lavf tests/vsynth1 "$target_exec" "$target_path" "$threads" "$thread_type" "$cpuflags"
224 }
225
226 video_filter(){
227     filters=$1
228     shift
229     label=${test#filter-}
230     printf '%-20s' $label
231     avconv $DEC_OPTS -f image2 -c:v pgmyuv -i $raw_src \
232         $FLAGS $ENC_OPTS -vf "$filters" -c:v rawvideo -frames:v 5 $* -f nut md5:
233 }
234
235 pixfmts(){
236     filter=${test#filter-pixfmts-}
237     filter_args=$1
238
239     showfiltfmts="$target_exec $target_path/libavfilter/tests/filtfmts"
240     exclude_fmts=${outfile}${filter}_exclude_fmts
241     out_fmts=${outfile}${filter}_out_fmts
242
243     # exclude pixel formats which are not supported as input
244     avconv -pix_fmts list 2>/dev/null | awk 'NR > 8 && /^\..\./ { print $2 }' | sort >$exclude_fmts
245     $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts
246
247     pix_fmts=$($showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts)
248
249     outertest=$test
250     for pix_fmt in $pix_fmts; do
251         test=$pix_fmt
252         video_filter "format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt -frames:v 1
253     done
254
255     rm $exclude_fmts $out_fmts
256     test=$outertest
257 }
258
259 null(){
260     :
261 }
262
263 exec 3>&2
264 eval $command >"$outfile" 2>$errfile
265 err=$?
266
267 if [ $err -gt 128 ]; then
268     sig=$(kill -l $err 2>/dev/null)
269     test "${sig}" = "${sig%[!A-Za-z]*}" || unset sig
270 fi
271
272 if test -e "$ref" || test $cmp = "oneline" || test $cmp = "null" ; then
273     case $cmp in
274         diff)   diff -u -b "$ref" "$outfile"            >$cmpfile ;;
275         oneoff) oneoff     "$ref" "$outfile"            >$cmpfile ;;
276         stddev) stddev     "$ref" "$outfile"            >$cmpfile ;;
277         oneline)oneline    "$ref" "$outfile"            >$cmpfile ;;
278         null)   cat               "$outfile"            >$cmpfile ;;
279     esac
280     cmperr=$?
281     test $err = 0 && err=$cmperr
282     if [ "$report_type" = "ignore" ]; then
283         test $err = 0 || echo "IGNORE\t${test}" && err=0 && unset sig
284     else
285         test $err = 0 || cat $cmpfile
286     fi
287 else
288     echo "reference file '$ref' not found"
289     err=1
290 fi
291
292 if [ $err -eq 0 ] && test $report_type = "standard" ; then
293     unset cmpo erro
294 else
295     cmpo="$($base64 <$cmpfile)"
296     erro="$($base64 <$errfile)"
297 fi
298 echo "${test}:${sig:-$err}:$cmpo:$erro" >$repfile
299
300 if test $err != 0 && test $gen != "no" ; then
301     echo "GEN     $ref"
302     cp -f "$outfile" "$ref"
303     err=$?
304 fi
305
306 test $err = 0 && rm -f $outfile $errfile $cmpfile $cleanfiles
307 exit $err