lavfi-regression.sh 2.7 KB

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