]> git.sesse.net Git - ffmpeg/blob - tests/lavfi-regression.sh
fate: add test for the thumbnail video filter.
[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() {
24     vfilters="slicify=random,$2"
25
26     if [ $test = $1 ] ; then
27         do_video_filter $test "$vfilters"
28     fi
29 }
30
31 do_lavfi "crop"               "crop=iw-100:ih-100:100:100"
32 do_lavfi "crop_scale"         "crop=iw-100:ih-100:100:100,scale=400:-1"
33 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"
34 do_lavfi "crop_vflip"         "crop=iw-100:ih-100:100:100,vflip"
35 do_lavfi "deshake"            "deshake"
36 do_lavfi "drawbox"            "drawbox=224:24:88:72:#FF8010@0.5"
37 do_lavfi "fade"               "fade=in:5:15,fade=out:30:15"
38 do_lavfi "null"               "null"
39 do_lavfi "overlay"            "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo,[o2]overlay=240:16"
40 do_lavfi "pad"                "pad=iw*1.5:ih*1.5:iw*0.3:ih*0.2"
41 do_lavfi "scale200"           "scale=200:200"
42 do_lavfi "scale500"           "scale=500:500"
43 do_lavfi "select"             "select=not(eq(mod(n\,2)\,0)+eq(mod(n\,3)\,0))"
44 do_lavfi "setdar"             "setdar=16/9"
45 do_lavfi "setsar"             "setsar=16/11"
46 do_lavfi "thumbnail"          "thumbnail=10"
47 do_lavfi "vflip"              "vflip"
48 do_lavfi "vflip_crop"         "vflip,crop=iw-100:ih-100:100:100"
49 do_lavfi "vflip_vflip"        "vflip,vflip"
50
51 do_lavfi_pixfmts(){
52     test ${test%_[bl]e} = pixfmts_$1 || return 0
53     filter=$1
54     filter_args=$2
55
56     showfiltfmts="$target_exec $target_path/tools/lavfi-showfiltfmts"
57     exclude_fmts=${outfile}${1}_exclude_fmts
58     out_fmts=${outfile}${1}_out_fmts
59
60     # exclude pixel formats which are not supported as input
61     $avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts
62     $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -23 - $exclude_fmts >$out_fmts
63
64     pix_fmts=$($showfiltfmts $filter $filter_args | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -12 - $out_fmts)
65     for pix_fmt in $pix_fmts; do
66         do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt
67     done
68
69     rm $exclude_fmts $out_fmts
70 }
71
72 # all these filters have exactly one input and exactly one output
73 do_lavfi_pixfmts "copy"    ""
74 do_lavfi_pixfmts "crop"    "100:100:100:100"
75 do_lavfi_pixfmts "hflip"   ""
76 do_lavfi_pixfmts "null"    ""
77 do_lavfi_pixfmts "pad"     "500:400:20:20"
78 do_lavfi_pixfmts "scale"   "200:100"
79 do_lavfi_pixfmts "vflip"   ""
80
81 if [ -n "$do_pixdesc" ]; then
82     pix_fmts="$($avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^IO' | cut -d' ' -f2 | sort)"
83     for pix_fmt in $pix_fmts; do
84         do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt
85     done
86 fi
87
88 do_lavfi_lavd() {
89     label=$1
90     graph=$2
91     shift 2
92     [ $test = $label ] || return 0
93     printf '%-20s' $label
94     run_avconv $DEC_OPTS -f lavfi -i $graph \
95         $ENC_OPTS -vcodec rawvideo $* -f nut md5:
96 }
97
98 do_lavfi_lavd "testsrc"              "testsrc=r=7:n=2:d=10"
99
100 # TODO: add tests for
101 # direct rendering,
102 # chains with feedback loops