lavfi-regression.sh 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 "crop" "crop=iw-100:ih-100:100:100"
  25. do_lavfi "crop_scale" "crop=iw-100:ih-100:100:100,scale=400:-1"
  26. 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"
  27. do_lavfi "crop_vflip" "crop=iw-100:ih-100:100:100,vflip"
  28. do_lavfi "null" "null"
  29. do_lavfi "scale200" "scale=200:200"
  30. do_lavfi "scale500" "scale=500:500"
  31. do_lavfi "vflip" "vflip"
  32. do_lavfi "vflip_crop" "vflip,crop=iw-100:ih-100:100:100"
  33. do_lavfi "vflip_vflip" "vflip,vflip"
  34. do_lavfi_pixfmts(){
  35. test ${test%_[bl]e} = pixfmts_$1 || return 0
  36. filter=$1
  37. filter_args=$2
  38. showfiltfmts="$target_exec $target_path/tools/lavfi-showfiltfmts"
  39. exclude_fmts=${outfile}${1}_exclude_fmts
  40. out_fmts=${outfile}${1}_out_fmts
  41. # exclude pixel formats which are not supported as input
  42. $avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts
  43. $showfiltfmts scale | awk -F '[ \r]' '/^OUTPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -23 - $exclude_fmts >$out_fmts
  44. pix_fmts=$($showfiltfmts $filter $filter_args | awk -F '[ \r]' '/^INPUT/{ fmt=substr($3, 5); print fmt }' | sort | comm -12 - $out_fmts)
  45. for pix_fmt in $pix_fmts; do
  46. do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,$filter=$filter_args" -pix_fmt $pix_fmt
  47. done
  48. rm $exclude_fmts $out_fmts
  49. }
  50. # all these filters have exactly one input and exactly one output
  51. do_lavfi_pixfmts "copy" ""
  52. do_lavfi_pixfmts "crop" "100:100:100:100"
  53. do_lavfi_pixfmts "hflip" ""
  54. do_lavfi_pixfmts "null" ""
  55. do_lavfi_pixfmts "pad" "500:400:20:20"
  56. do_lavfi_pixfmts "scale" "200:100"
  57. do_lavfi_pixfmts "vflip" ""
  58. if [ -n "$do_pixdesc" ]; then
  59. pix_fmts="$($avconv -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^IO' | cut -d' ' -f2 | sort)"
  60. for pix_fmt in $pix_fmts; do
  61. do_video_filter $pix_fmt "slicify=random,format=$pix_fmt,pixdesctest" -pix_fmt $pix_fmt
  62. done
  63. fi
  64. # TODO: add tests for
  65. # direct rendering,
  66. # chains with feedback loops