tests/lavfi-regression.sh
77f66963
 #!/bin/sh
 #
 # automatic regression test for libavfilter
 #
 #
 #set -x
 
 set -e
 
 . $(dirname $0)/regression-funcs.sh
 
 eval do_$test=y
 
05238927
 do_video_filter() {
     label=$1
82ecae8a
     filters="$2"
05238927
     shift 2
ea57502c
     printf '%-20s' $label
6291d7e4
     run_avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src    \
ea57502c
         $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5:
05238927
 }
 
82ecae8a
 do_lavfi_plain() {
     vfilters="$2"
77f66963
 
e6e3069b
     if [ $test = $1 ] ; then
bb6c67bb
         do_video_filter $test "$2"
77f66963
     fi
 }
 
82ecae8a
 do_lavfi() {
8c1f98d9
     do_lavfi_plain $1 "$2"
82ecae8a
 }
 
13cc3645
 do_lavfi_colormatrix() {
     do_lavfi "${1}1" "$1=$4:$5,$1=$5:$3,$1=$3:$4,$1=$4:$3,$1=$3:$5,$1=$5:$2"
     do_lavfi "${1}2" "$1=$2:$3,$1=$3:$2,$1=$2:$4,$1=$4:$2,$1=$2:$5,$1=$5:$4"
 }
 
75b67a8a
 do_lavfi "crop"               "crop=iw-100:ih-100:100:100"
 do_lavfi "crop_scale"         "crop=iw-100:ih-100:100:100,scale=400:-1"
 do_lavfi "crop_scale_vflip"   "null,null,crop=iw-200:ih-200:200:200,crop=iw-20:ih-20:20:20,scale=200:200,scale=250:250,vflip,vflip,null,scale=200:200,crop=iw-100:ih-100:100:100,vflip,scale=200:200,null,vflip,crop=iw-100:ih-100:100:100,null"
 do_lavfi "crop_vflip"         "crop=iw-100:ih-100:100:100,vflip"
e36504b5
 do_lavfi "drawbox"            "drawbox=224:24:88:72:#FF8010@0.5"
3250231a
 do_lavfi "edgedetect"         "edgedetect"
93800030
 do_lavfi "fade"               "fade=in:5:15,fade=out:30:15"
72e84a08
 do_lavfi "hue"                "hue=s=sin(2*PI*t)+1"
e782d872
 do_lavfi "idet"               "idet"
cec96e8d
 do_lavfi "null"               "null"
aba18c5a
 do_lavfi "overlay_rgb"        "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo[o1],[o1][o2]overlay=240:16:format=rgb"
 do_lavfi "overlay_yuv420"     "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo[o1],[o1][o2]overlay=240:16:format=yuv420"
 do_lavfi "overlay_yuv444"     "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo[o1],[o1][o2]overlay=240:16:format=yuv444"
f2a05174
 do_lavfi "pad"                "pad=iw*1.5:ih*1.5:iw*0.3:ih*0.2"
9b8de930
 do_lavfi "pp"                 "pp=be/hb/vb/tn/l5/al"
 do_lavfi "pp2"                "pp=be/fq:16/h1/v1/lb"
 do_lavfi "pp3"                "pp=be/fq:8/ha:128:7/va/li"
 do_lavfi "pp4"                "pp=be/ci"
 do_lavfi "pp5"                "pp=md"
 do_lavfi "pp6"                "pp=be/fd"
cec96e8d
 do_lavfi "scale200"           "scale=200:200"
 do_lavfi "scale500"           "scale=500:500"
01f1468e
 do_lavfi "select"             "select=not(eq(mod(n\,2)\,0)+eq(mod(n\,3)\,0))"
4d27a5b2
 do_lavfi "setdar"             "setdar=16/9"
 do_lavfi "setsar"             "setsar=16/11"
b0de06ae
 do_lavfi "thumbnail"          "thumbnail=10"
a8afb083
 do_lavfi "tile"               "tile=3x3:nb_frames=5:padding=7:margin=2"
d8cf9d8a
 do_lavfi "transpose"          "transpose"
894ed8fb
 do_lavfi "unsharp"            "unsharp=11:11:-1.5:11:11:-1.5"
cec96e8d
 do_lavfi "vflip"              "vflip"
75b67a8a
 do_lavfi "vflip_crop"         "vflip,crop=iw-100:ih-100:100:100"
cec96e8d
 do_lavfi "vflip_vflip"        "vflip,vflip"
77f66963
 
8c1f98d9
 do_lavfi_plain "alphamerge_rgb"     "[in]format=bgra,split,alphamerge[out]"
 do_lavfi_plain "alphamerge_yuv"     "[in]format=yuv420p,split,alphamerge[out]"
 do_lavfi_plain "alphaextract_rgb"   "[in]format=bgra,split,alphamerge,split[o3][o4];[o4]alphaextract[alpha];[o3][alpha]alphamerge[out]"
 do_lavfi_plain "alphaextract_yuv"   "[in]format=yuv420p,split,alphamerge,split[o3][o4];[o4]alphaextract[alpha];[o3][alpha]alphamerge[out]"
82ecae8a
 
13cc3645
 do_lavfi_colormatrix "colormatrix" bt709 fcc bt601 smpte240m
 
73177b6c
 do_lavfi_pixfmts(){
92f1bed1
     testname=$1;
77c991d8
     test ${test%_[bl]e} = $testname || return 0
92f1bed1
     filter=$2
     filter_args=$3
172505b8
     prefilter_chain=$4
e34d5db5
 
7c29377b
     showfiltfmts="$target_exec $target_path/libavfilter/filtfmts-test"
bdfffa66
     scale_exclude_fmts=${outfile}${testname}_scale_exclude_fmts
     scale_in_fmts=${outfile}${testname}_scale_in_fmts
     scale_out_fmts=${outfile}${testname}_scale_out_fmts
     in_fmts=${outfile}${testname}_in_fmts
8456d947
 
7e7fc4e9
     # exclude pixel formats which are not supported as input
52b23cbf
     $showfiltfmts scale | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$scale_in_fmts
     $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort >$scale_out_fmts
     comm -12 $scale_in_fmts $scale_out_fmts >$scale_exclude_fmts
 
     $showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$in_fmts
     pix_fmts=$(comm -12 $scale_exclude_fmts $in_fmts)
e34d5db5
 
04307697
     for pix_fmt in $pix_fmts; do
172505b8
         do_video_filter $pix_fmt "${prefilter_chain}format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt
04307697
     done
7e7fc4e9
 
52b23cbf
     rm $in_fmts $scale_in_fmts $scale_out_fmts $scale_exclude_fmts
73177b6c
 }
 
 # all these filters have exactly one input and exactly one output
92f1bed1
 do_lavfi_pixfmts "field"               "field"   "bottom"
01405663
 do_lavfi_pixfmts "histeq"              "histeq"  "antibanding=strong"
e005697a
 do_lavfi_pixfmts "il"                  "il"      "luma_mode=d:chroma_mode=d:alpha_mode=d"
172505b8
 do_lavfi_pixfmts "kerndeint"           "kerndeint" "" "tinterlace=interleave_top,"
92f1bed1
 do_lavfi_pixfmts "pixfmts_copy"        "copy"    ""
 do_lavfi_pixfmts "pixfmts_crop"        "crop"    "100:100:100:100"
 do_lavfi_pixfmts "pixfmts_hflip"       "hflip"   ""
 do_lavfi_pixfmts "pixfmts_null"        "null"    ""
 do_lavfi_pixfmts "pixfmts_pad"         "pad"     "500:400:20:20"
 do_lavfi_pixfmts "pixfmts_pixdesctest" "pixdesctest"
 do_lavfi_pixfmts "pixfmts_scale"       "scale"   "200:100"
 do_lavfi_pixfmts "pixfmts_super2xsai"  "super2xsai"
 do_lavfi_pixfmts "pixfmts_vflip"       "vflip"
 do_lavfi_pixfmts "tinterlace_merge"    "tinterlace" "merge"
 do_lavfi_pixfmts "tinterlace_pad"      "tinterlace" "pad"
e34d5db5
 
47bd0bc4
 do_lavfi_lavd() {
     label=$1
     graph=$2
     shift 2
     [ $test = $label ] || return 0
     printf '%-20s' $label
     run_avconv $DEC_OPTS -f lavfi -i $graph \
         $ENC_OPTS -vcodec rawvideo $* -f nut md5:
 }
 
a4c22e3c
 do_lavfi_lavd "life"                 "life=s=40x40:r=5:seed=42:mold=64" -t 2
47bd0bc4
 do_lavfi_lavd "testsrc"              "testsrc=r=7:n=2:d=10"
83938c3d
 do_lavfi_lavd "scalenorm"            "sws_flags=+accurate_rnd+bitexact;testsrc=s=128x96:d=1:r=5,format=yuv420p[a];testsrc=s=160x120:d=1:r=5[b];[a][b]concat=unsafe=1,scale=flags=+accurate_rnd+bitexact"
47bd0bc4
 
77f66963
 # TODO: add tests for
 # direct rendering,
 # chains with feedback loops