]> git.sesse.net Git - ffmpeg/blob - tests/lavfi-regression.sh
Merge commit '399663be9d4a839b894c48a21b62926eb8497d72'
[ffmpeg] / tests / lavfi-regression.sh
1 #!/bin/sh
2 #
3 # automatic regression test for libavfilter
4 #
5 #
6 #set -x
7
8 set -e
9
10 . $(dirname $0)/regression-funcs.sh
11
12 eval do_$test=y
13
14 do_video_filter() {
15     label=$1
16     filters="$2"
17     shift 2
18     printf '%-20s' $label
19     run_avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src    \
20         $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5:
21 }
22
23 do_lavfi_plain() {
24     vfilters="$2"
25
26     if [ $test = $1 ] ; then
27         do_video_filter $test "$2"
28     fi
29 }
30
31 do_lavfi() {
32     do_lavfi_plain $1 "$2"
33 }
34
35 do_lavfi_colormatrix() {
36     do_lavfi "${1}1" "$1=$4:$5,$1=$5:$3,$1=$3:$4,$1=$4:$3,$1=$3:$5,$1=$5:$2"
37     do_lavfi "${1}2" "$1=$2:$3,$1=$3:$2,$1=$2:$4,$1=$4:$2,$1=$2:$5,$1=$5:$4"
38 }
39
40 do_lavfi "crop"               "crop=iw-100:ih-100:100:100"
41 do_lavfi "crop_scale"         "crop=iw-100:ih-100:100:100,scale=400:-1"
42 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"
43 do_lavfi "crop_vflip"         "crop=iw-100:ih-100:100:100,vflip"
44 do_lavfi "drawbox"            "drawbox=224:24:88:72:#FF8010@0.5"
45 do_lavfi "edgedetect"         "edgedetect"
46 do_lavfi "fade"               "fade=in:5:15,fade=out:30:15"
47 do_lavfi "hue"                "hue=s=sin(2*PI*t)+1"
48 do_lavfi "idet"               "idet"
49 do_lavfi "null"               "null"
50 do_lavfi "overlay"            "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo[o1],[o1][o2]overlay=240:16"
51 do_lavfi "pad"                "pad=iw*1.5:ih*1.5:iw*0.3:ih*0.2"
52 do_lavfi "pp"                 "pp=be/hb/vb/tn/l5/al"
53 do_lavfi "pp2"                "pp=be/fq:16/h1/v1/lb"
54 do_lavfi "pp3"                "pp=be/fq:8/ha:128:7/va/li"
55 do_lavfi "pp4"                "pp=be/ci"
56 do_lavfi "pp5"                "pp=md"
57 do_lavfi "pp6"                "pp=be/fd"
58 do_lavfi "scale200"           "scale=200:200"
59 do_lavfi "scale500"           "scale=500:500"
60 do_lavfi "select"             "select=not(eq(mod(n\,2)\,0)+eq(mod(n\,3)\,0))"
61 do_lavfi "setdar"             "setdar=16/9"
62 do_lavfi "setsar"             "setsar=16/11"
63 do_lavfi "thumbnail"          "thumbnail=10"
64 do_lavfi "tile"               "tile=3x3:nb_frames=5:padding=7:margin=2"
65 do_lavfi "transpose"          "transpose"
66 do_lavfi "unsharp"            "unsharp=11:11:-1.5:11:11:-1.5"
67 do_lavfi "vflip"              "vflip"
68 do_lavfi "vflip_crop"         "vflip,crop=iw-100:ih-100:100:100"
69 do_lavfi "vflip_vflip"        "vflip,vflip"
70
71 do_lavfi_plain "alphamerge_rgb"     "[in]format=bgra,split,alphamerge[out]"
72 do_lavfi_plain "alphamerge_yuv"     "[in]format=yuv420p,split,alphamerge[out]"
73 do_lavfi_plain "alphaextract_rgb"   "[in]format=bgra,split,alphamerge,split[o3][o4];[o4]alphaextract[alpha];[o3][alpha]alphamerge[out]"
74 do_lavfi_plain "alphaextract_yuv"   "[in]format=yuv420p,split,alphamerge,split[o3][o4];[o4]alphaextract[alpha];[o3][alpha]alphamerge[out]"
75
76 do_lavfi_colormatrix "colormatrix" bt709 fcc bt601 smpte240m
77
78 do_lavfi_pixfmts(){
79     testname=$1;
80     test ${test%_[bl]e} = $testname || return 0
81     filter=$2
82     filter_args=$3
83     prefilter_chain=$4
84
85     showfiltfmts="$target_exec $target_path/libavfilter/filtfmts-test"
86     scale_exclude_fmts=${outfile}${testname}_scale_exclude_fmts
87     scale_in_fmts=${outfile}${testname}_scale_in_fmts
88     scale_out_fmts=${outfile}${testname}_scale_out_fmts
89     in_fmts=${outfile}${testname}_in_fmts
90
91     # exclude pixel formats which are not supported as input
92     $showfiltfmts scale | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$scale_in_fmts
93     $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort >$scale_out_fmts
94     comm -12 $scale_in_fmts $scale_out_fmts >$scale_exclude_fmts
95
96     $showfiltfmts $filter | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort >$in_fmts
97     pix_fmts=$(comm -12 $scale_exclude_fmts $in_fmts)
98
99     for pix_fmt in $pix_fmts; do
100         do_video_filter $pix_fmt "${prefilter_chain}format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt
101     done
102
103     rm $in_fmts $scale_in_fmts $scale_out_fmts $scale_exclude_fmts
104 }
105
106 # all these filters have exactly one input and exactly one output
107 do_lavfi_pixfmts "field"               "field"   "bottom"
108 do_lavfi_pixfmts "histeq"              "histeq"  "antibanding=strong"
109 do_lavfi_pixfmts "il"                  "il"      "luma_mode=d:chroma_mode=d:alpha_mode=d"
110 do_lavfi_pixfmts "kerndeint"           "kerndeint" "" "tinterlace=interleave_top,"
111 do_lavfi_pixfmts "pixfmts_copy"        "copy"    ""
112 do_lavfi_pixfmts "pixfmts_crop"        "crop"    "100:100:100:100"
113 do_lavfi_pixfmts "pixfmts_hflip"       "hflip"   ""
114 do_lavfi_pixfmts "pixfmts_null"        "null"    ""
115 do_lavfi_pixfmts "pixfmts_pad"         "pad"     "500:400:20:20"
116 do_lavfi_pixfmts "pixfmts_pixdesctest" "pixdesctest"
117 do_lavfi_pixfmts "pixfmts_scale"       "scale"   "200:100"
118 do_lavfi_pixfmts "pixfmts_super2xsai"  "super2xsai"
119 do_lavfi_pixfmts "pixfmts_vflip"       "vflip"
120 do_lavfi_pixfmts "tinterlace_merge"    "tinterlace" "merge"
121 do_lavfi_pixfmts "tinterlace_pad"      "tinterlace" "pad"
122
123 do_lavfi_lavd() {
124     label=$1
125     graph=$2
126     shift 2
127     [ $test = $label ] || return 0
128     printf '%-20s' $label
129     run_avconv $DEC_OPTS -f lavfi -i $graph \
130         $ENC_OPTS -vcodec rawvideo $* -f nut md5:
131 }
132
133 do_lavfi_lavd "life"                 "life=s=40x40:r=5:seed=42:mold=64" -t 2
134 do_lavfi_lavd "testsrc"              "testsrc=r=7:n=2:d=10"
135 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"
136
137 # TODO: add tests for
138 # direct rendering,
139 # chains with feedback loops