mirror of https://github.com/FFmpeg/FFmpeg.git
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.
79 lines
2.5 KiB
79 lines
2.5 KiB
#!/bin/sh |
|
# |
|
# automatic regression test for libavfilter |
|
# |
|
# |
|
#set -x |
|
|
|
set -e |
|
|
|
. $(dirname $0)/regression-funcs.sh |
|
|
|
eval do_$test=y |
|
|
|
rm -f "$logfile" |
|
rm -f "$benchfile" |
|
|
|
do_lavfi() { |
|
vfilters="slicify=random,$2" |
|
|
|
if [ $test = $1 ] ; then |
|
do_video_encoding ${test}.nut "" "-vcodec rawvideo -vf $vfilters" |
|
fi |
|
} |
|
|
|
do_lavfi "crop" "crop=100:100" |
|
do_lavfi "crop_scale" "crop=100:100,scale=400:-1" |
|
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" |
|
do_lavfi "crop_vflip" "crop=100:100,vflip" |
|
do_lavfi "null" "null" |
|
do_lavfi "scale200" "scale=200:200" |
|
do_lavfi "scale500" "scale=500:500" |
|
do_lavfi "vflip" "vflip" |
|
do_lavfi "vflip_crop" "vflip,crop=100:100" |
|
do_lavfi "vflip_vflip" "vflip,vflip" |
|
|
|
do_lavfi_pixfmts(){ |
|
test ${test%_[bl]e} = pixfmts_$1 || return 0 |
|
filter=$1 |
|
filter_args=$2 |
|
|
|
showfiltfmts="$target_exec $target_path/tools/lavfi-showfiltfmts" |
|
exclude_fmts=${outfile}exclude_fmts |
|
out_fmts=${outfile}out_fmts |
|
|
|
# exclude pixel formats which are not supported as input |
|
$ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2 | sort >$exclude_fmts |
|
$showfiltfmts scale | awk '/^OUTPUT/{ print $3 }' | sort | comm -23 - $exclude_fmts >$out_fmts |
|
|
|
pix_fmts=$($showfiltfmts $filter | awk '/^INPUT/{ print $3 }' | sort | comm -12 - $out_fmts) |
|
for pix_fmt in $pix_fmts; do |
|
output=${test}-${pix_fmt}.nut |
|
do_video_encoding $output "" \ |
|
"-vf slicify=random,format=$pix_fmt,$filter=$filter_args -vcodec rawvideo -pix_fmt $pix_fmt" |
|
rm ${outfile}${output} |
|
done |
|
|
|
rm $exclude_fmts $out_fmts |
|
} |
|
|
|
# all these filters have exactly one input and exactly one output |
|
do_lavfi_pixfmts "crop" "100:100:100:100" |
|
do_lavfi_pixfmts "null" "" |
|
do_lavfi_pixfmts "pad" "500:400:20:20" |
|
do_lavfi_pixfmts "scale" "200:100" |
|
do_lavfi_pixfmts "vflip" "" |
|
|
|
if [ -n "$do_pixdesc_be" ] || [ -n "$do_pixdesc_le" ]; then |
|
pix_fmts="$($ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^IO' | cut -d' ' -f2)" |
|
for pix_fmt in $pix_fmts; do |
|
output=lavfi_pixdesc-${pix_fmt}.nut |
|
do_video_encoding $output "" \ |
|
"-vf slicify=random,format=$pix_fmt,pixdesctest -vcodec rawvideo -pix_fmt $pix_fmt" |
|
rm ${outfile}${output} |
|
done |
|
fi |
|
|
|
# TODO: add tests for |
|
# direct rendering, |
|
# chains with feedback loops
|
|
|