2009-10-27 19:34:48 +00:00
|
|
|
#!/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"
|
|
|
|
|
2010-05-24 20:38:50 +00:00
|
|
|
get_common_elements() (
|
|
|
|
for elt1 in $1; do
|
|
|
|
for elt2 in $2; do
|
|
|
|
[ $elt1 = $elt2 ] && res="$res $elt1 "
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
echo $res
|
|
|
|
)
|
|
|
|
|
2010-06-03 22:17:06 +00:00
|
|
|
# Returns the elements present in $1 but not in $2.
|
|
|
|
get_exclusive_elements() (
|
|
|
|
for elt1 in $1; do
|
|
|
|
common=""
|
|
|
|
for elt2 in $2; do
|
|
|
|
[ $elt1 = $elt2 ] && common="true" && break;
|
|
|
|
done
|
|
|
|
[ -z "$common" ] && res="$res $elt1"
|
|
|
|
done
|
|
|
|
|
|
|
|
echo $res
|
|
|
|
)
|
|
|
|
|
2009-10-27 19:34:48 +00:00
|
|
|
do_lavfi() {
|
2010-03-17 23:23:48 +00:00
|
|
|
vfilters="slicify=random,$2"
|
2009-10-27 19:34:48 +00:00
|
|
|
|
2010-07-24 17:13:35 +00:00
|
|
|
if [ $test = $1 ] ; then
|
|
|
|
do_video_encoding ${test}.nut "" "-vcodec rawvideo -vf $vfilters"
|
2009-10-27 19:34:48 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-03-17 23:23:44 +00:00
|
|
|
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"
|
2009-10-27 19:34:48 +00:00
|
|
|
|
2010-05-24 20:38:50 +00:00
|
|
|
# all these filters have exactly one input and exactly one output
|
|
|
|
filters_args="
|
|
|
|
crop=100:100:100:100
|
|
|
|
null
|
|
|
|
pad=500:400:20:20
|
|
|
|
scale=200:100
|
|
|
|
vflip
|
|
|
|
"
|
|
|
|
|
|
|
|
if [ -n "$do_lavfi_pix_fmts" ]; then
|
2010-06-06 18:50:27 +00:00
|
|
|
# exclude pixel formats which are not supported as input
|
|
|
|
excluded_pix_fmts="$(ffmpeg -pix_fmts list 2>/dev/null | sed -ne '9,$p' | grep '^\..\.' | cut -d' ' -f2)"
|
2010-06-03 22:17:06 +00:00
|
|
|
|
2010-05-24 20:38:50 +00:00
|
|
|
scale_out_pix_fmts=$(tools/lavfi-showfiltfmts scale | grep "^OUTPUT" | cut -d: -f2)
|
2010-06-03 22:17:06 +00:00
|
|
|
scale_out_pix_fmts=$(get_exclusive_elements "$scale_out_pix_fmts" "$excluded_pix_fmts")
|
2010-05-24 20:38:50 +00:00
|
|
|
|
|
|
|
for filter_args in $filters_args; do
|
|
|
|
filter=$(echo $filter_args | sed -e 's/\([^=]\+\)=.*/\1/')
|
|
|
|
in_pix_fmts=$(tools/lavfi-showfiltfmts $filter | grep "^INPUT" | cut -d: -f2)
|
|
|
|
pix_fmts=$(get_common_elements "$in_pix_fmts" "$scale_out_pix_fmts")
|
|
|
|
|
|
|
|
for pix_fmt in $pix_fmts; do
|
|
|
|
do_video_encoding "${pix_fmt}-${filter}.nut" "" \
|
|
|
|
"-vf slicify=random,format=$pix_fmt,$filter_args -vcodec rawvideo -pix_fmt $pix_fmt"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2010-07-19 17:17:49 +00:00
|
|
|
if [ -n "$do_pixdesc_be" ] || [ -n "$do_pixdesc_le" ]; then
|
2010-07-07 18:24:55 +00:00
|
|
|
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
|
2010-07-24 17:13:32 +00:00
|
|
|
output=lavfi_pixdesc-${pix_fmt}.nut
|
|
|
|
do_video_encoding $output "" \
|
2010-07-07 18:24:55 +00:00
|
|
|
"-vf slicify=random,format=$pix_fmt,pixdesctest -vcodec rawvideo -pix_fmt $pix_fmt"
|
2010-07-24 17:13:32 +00:00
|
|
|
rm ${outfile}${output}
|
2010-07-07 18:24:55 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2009-10-27 19:34:48 +00:00
|
|
|
# TODO: add tests for
|
|
|
|
# direct rendering,
|
|
|
|
# chains with feedback loops
|