You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 lines
2.5KB

  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. rm -f "$logfile"
  11. rm -f "$benchfile"
  12. get_common_elements() (
  13. for elt1 in $1; do
  14. for elt2 in $2; do
  15. [ $elt1 = $elt2 ] && res="$res $elt1 "
  16. done
  17. done
  18. echo $res
  19. )
  20. # Returns the elements present in $1 but not in $2.
  21. get_exclusive_elements() (
  22. for elt1 in $1; do
  23. common=""
  24. for elt2 in $2; do
  25. [ $elt1 = $elt2 ] && common="true" && break;
  26. done
  27. [ -z "$common" ] && res="$res $elt1"
  28. done
  29. echo $res
  30. )
  31. do_lavfi() {
  32. test_name=$1
  33. eval test=\$do_$test_name
  34. vfilters="slicify=random,$2"
  35. if [ -n "$test" ] ; then
  36. do_video_encoding ${test_name}.nut "" "-vcodec rawvideo -vf $vfilters"
  37. fi
  38. }
  39. do_lavfi "crop" "crop=100:100"
  40. do_lavfi "crop_scale" "crop=100:100,scale=400:-1"
  41. do_lavfi "crop_scale_vflip" "null,null,crop=200:200,crop=20:20,scale=200:200,scale=250:250,vflip,vflip,null,scale=200:200,crop=100:100,vflip,scale=200:200,null,vflip,crop=100:100,null"
  42. do_lavfi "crop_vflip" "crop=100:100,vflip"
  43. do_lavfi "null" "null"
  44. do_lavfi "scale200" "scale=200:200"
  45. do_lavfi "scale500" "scale=500:500"
  46. do_lavfi "vflip" "vflip"
  47. do_lavfi "vflip_crop" "vflip,crop=100:100"
  48. do_lavfi "vflip_vflip" "vflip,vflip"
  49. # all these filters have exactly one input and exactly one output
  50. filters_args="
  51. crop=100:100:100:100
  52. null
  53. pad=500:400:20:20
  54. scale=200:100
  55. vflip
  56. "
  57. if [ -n "$do_lavfi_pix_fmts" ]; then
  58. # exclude pixel formats which are not supported as input
  59. excluded_pix_fmts="$(ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)"
  60. scale_out_pix_fmts=$(tools/lavfi-showfiltfmts scale | grep "^OUTPUT" | cut -d: -f2)
  61. scale_out_pix_fmts=$(get_exclusive_elements "$scale_out_pix_fmts" "$excluded_pix_fmts")
  62. for filter_args in $filters_args; do
  63. filter=$(echo $filter_args | sed -e 's/\([^=]\+\)=.*/\1/')
  64. in_pix_fmts=$(tools/lavfi-showfiltfmts $filter | grep "^INPUT" | cut -d: -f2)
  65. pix_fmts=$(get_common_elements "$in_pix_fmts" "$scale_out_pix_fmts")
  66. for pix_fmt in $pix_fmts; do
  67. do_video_encoding "${pix_fmt}-${filter}.nut" "" \
  68. "-vf slicify=random,format=$pix_fmt,$filter_args -vcodec rawvideo -pix_fmt $pix_fmt"
  69. done
  70. done
  71. fi
  72. # TODO: add tests for
  73. # direct rendering,
  74. # chains with feedback loops
  75. rm -f "$bench" "$bench2"