1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-04 02:10:01 +02:00

Simplify lavfi test script a little

Originally committed as revision 24486 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2010-07-24 17:13:35 +00:00
parent 8fae6e7c11
commit e6e3069b54

View File

@ -38,12 +38,10 @@ get_exclusive_elements() (
)
do_lavfi() {
test_name=$1
eval test=\$do_$test_name
vfilters="slicify=random,$2"
if [ -n "$test" ] ; then
do_video_encoding ${test_name}.nut "" "-vcodec rawvideo -vf $vfilters"
if [ $test = $1 ] ; then
do_video_encoding ${test}.nut "" "-vcodec rawvideo -vf $vfilters"
fi
}