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 /Makefile | |
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 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -250,7 +250,17 @@ LAVF_TESTS-$(call MUXDEM,VOC) += voc LAVF_TESTS-$(call MUXDEM,WAV) += wav LAVF_TESTS-$(call MUXDEM,YUV4MPEGPIPE) += yuv4mpeg -LAVFI_TESTS = +LAVFI_TESTS = \ + crop \ + crop_scale \ + crop_scale_vflip \ + crop_vflip \ + null \ + scale200 \ + scale500 \ + vflip \ + vflip_crop \ + vflip_vflip \ ACODEC_TESTS := $(addprefix regtest-, $(ACODEC_TESTS) $(ACODEC_TESTS-yes)) VCODEC_TESTS := $(addprefix regtest-, $(VCODEC_TESTS) $(VCODEC_TESTS-yes)) @@ -261,8 +271,7 @@ CODEC_TESTS = $(VCODEC_TESTS) $(ACODEC_TESTS) codectest: $(CODEC_TESTS) lavftest: $(LAVF_TESTS) - -# lavfitest: $(LAVFI_TESTS) +lavfitest: $(LAVFI_TESTS) $(ACODEC_TESTS): regtest-aref $(VCODEC_TESTS): regtest-vref |