diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-17 23:23:44 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-03-17 23:23:44 +0000 |
commit | cec96e8de36dfb8943dea49b918e09139f30dbca (patch) | |
tree | c8cf059d249ac85a728d61488681fc12d3e7cf5a /tests/lavfi-regression.sh | |
parent | a7a85dc4c2e3fa818573ab1adc547758fe95b539 (diff) | |
download | ffmpeg-cec96e8de36dfb8943dea49b918e09139f30dbca.tar.gz |
Add some ad-hoc tests for libavfilter.
A patched version of ffmpeg supporting video filters is required for
getting this working; thus make lavfitest is supposed to work only in
the libavfilter repository for now.
Originally committed as revision 22586 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/lavfi-regression.sh')
-rwxr-xr-x | tests/lavfi-regression.sh | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/tests/lavfi-regression.sh b/tests/lavfi-regression.sh index 1f52fd7eee..6f82eb9475 100755 --- a/tests/lavfi-regression.sh +++ b/tests/lavfi-regression.sh @@ -20,14 +20,20 @@ do_lavfi() { vfilters=$2 if [ -n "$test" ] ; then - do_video_encoding ${test_name}.avi "" "-vcodec rawvideo -vfilters $vfilters" + do_video_encoding ${test_name}.nut "" "-vcodec rawvideo -vfilters $vfilters" fi } -# example tests: -# do_lavfi "crop" "crop=100:100:-1:-1" -# do_lavfi "crop_scale" "crop=100:100,scale=200:-1" -# do_lavfi "scale" "scale=200:200" +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" # TODO: add tests for # direct rendering, |