lavfi-regression.sh 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #!/bin/sh
  2. #
  3. # automatic regression test for libavfilter
  4. #
  5. #
  6. #set -x
  7. set -e
  8. . $(dirname $0)/regression-funcs.sh
  9. eval do_$test=y
  10. do_video_filter() {
  11. label=$1
  12. filters=$2
  13. shift 2
  14. printf '%-20s' $label
  15. run_avconv $DEC_OPTS -f image2 -vcodec pgmyuv -i $raw_src \
  16. $ENC_OPTS -vf "$filters" -vcodec rawvideo $* -f nut md5:
  17. }
  18. do_lavfi() {
  19. vfilters="slicify=random,$2"
  20. if [ $test = $1 ] ; then
  21. do_video_filter $test "$vfilters"
  22. fi
  23. }
  24. do_lavfi_colormatrix() {
  25. do_lavfi "${1}1" "$1=$4:$5,$1=$5:$3,$1=$3:$4,$1=$4:$3,$1=$3:$5,$1=$5:$2"
  26. do_lavfi "${1}2" "$1=$2:$3,$1=$3:$2,$1=$2:$4,$1=$4:$2,$1=$2:$5,$1=$5:$4"
  27. }
  28. do_lavfi "crop" "crop=iw-100:ih-100:100:100"
  29. do_lavfi "crop_scale" "crop=iw-100:ih-100:100:100,scale=400:-1"
  30. 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"
  31. do_lavfi "crop_vflip" "crop=iw-100:ih-100:100:100,vflip"
  32. do_lavfi "drawbox" "drawbox=224:24:88:72:#FF8010@0.5"
  33. do_lavfi "fade" "fade=in:5:15,fade=out:30:15"
  34. do_lavfi "null" "null"
  35. do_lavfi "overlay" "split[m],scale=88:72,pad=96:80:4:4[o2];[m]fifo[o1],[o1][o2]overlay=240:16"
  36. do_lavfi "pad" "pad=iw*1.5:ih*1.5:iw*0.3:ih*0.2"
  37. do_lavfi "pp" "mp=pp=be/de/tn/l5/al"
  38. do_lavfi "pp2" "mp=pp=be/fq:16/fa/lb"
  39. do_lavfi "pp3" "mp=pp=be/fq:8/ac/li"
  40. do_lavfi "pp4" "mp=pp=be/ci"
  41. do_lavfi "pp5" "mp=pp=md"
  42. do_lavfi "pp6" "mp=pp=be/fd"
  43. do_lavfi "scale200" "scale=200:200"
  44. do_lavfi "scale500" "scale=500:500"
  45. do_lavfi "select" "select=not(eq(mod(n\,2)\,0)+eq(mod(n\,3)\,0))"
  46. do_lavfi "setdar" "setdar=16/9"
  47. do_lavfi "setsar" "setsar=16/11"
  48. do_lavfi "thumbnail" "thumbnail=10"
  49. do_lavfi "transpose" "transpose"
  50. do_lavfi "unsharp" "unsharp=10:10:-1.5:10:10:-1.5"
  51. do_lavfi "vflip" "vflip"
  52. do_lavfi "vflip_crop" "vflip,crop=iw-100:ih-100:100:100"
  53. do_lavfi "vflip_vflip" "vflip,vflip"
  54. do_lavfi_colormatrix "colormatrix" bt709 fcc bt601 smpte240m
  55. do_lavfi_pixfmts(){
  56. test ${test%_[bl]e} = pixfmts_$1 || return 0
  57. filter=$1
  58. filter_args=$2
  59. showfiltfmts="$target_exec $target_path/tools/lavfi-showfiltfmts"
  60. exclude_fmts=${outfile}${1}_exclude_fmts
  61. out_fmts=${outfile}${1}_out_fmts
  62. # exclude pixel formats which are not supported as input
  63. $avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts
  64. $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -23 - $exclude_fmts >$out_fmts
  65. pix_fmts=$($showfiltfmts $filter $filter_args | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -12 - $out_fmts)
  66. for pix_fmt in $pix_fmts; do
  67. do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt
  68. done
  69. rm $exclude_fmts $out_fmts
  70. }
  71. # all these filters have exactly one input and exactly one output
  72. do_lavfi_pixfmts "copy" ""
  73. do_lavfi_pixfmts "crop" "100:100:100:100"
  74. do_lavfi_pixfmts "hflip" ""
  75. do_lavfi_pixfmts "null" ""
  76. do_lavfi_pixfmts "pad" "500:400:20:20"
  77. do_lavfi_pixfmts "scale" "200:100"
  78. do_lavfi_pixfmts "vflip" ""
  79. if [ -n "$do_pixdesc" ]; then
  80. pix_fmts="$($avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^IO' | cut -d' ' -f2 | sort)"
  81. for pix_fmt in $pix_fmts; do
  82. do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt
  83. done
  84. fi
  85. do_lavfi_lavd() {
  86. label=$1
  87. graph=$2
  88. shift 2
  89. [ $test = $label ] || return 0
  90. printf '%-20s' $label
  91. run_avconv $DEC_OPTS -f lavfi -i $graph \
  92. $ENC_OPTS -vcodec rawvideo $* -f nut md5:
  93. }
  94. do_lavfi_lavd "life" "life=s=40x40:r=5:seed=42:mold=64" -t 2
  95. do_lavfi_lavd "testsrc" "testsrc=r=7:n=2:d=10"
  96. # TODO: add tests for
  97. # direct rendering,
  98. # chains with feedback loops