diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-09-13 03:49:54 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-09-13 03:49:54 +0000 |
commit | 3e3c638e690df315d89b11fd2f84f979137b5e55 (patch) | |
tree | 3c2336c903f20f039a9722783089153953eac527 /Makefile | |
parent | f433c8abd3f6d2d09cb8077545887f01a377150a (diff) | |
download | ffmpeg-3e3c638e690df315d89b11fd2f84f979137b5e55.tar.gz |
Switch regression tests to swscale.
Plain C, x86-32 and -64 have been tested and should work, other
archs that had asm optmizations in swscale likely will need some fixes
to either fall back on C if SWS_BITEXACT is set or make the asm match C.
This also disables the PAL8 test as neither swscale nor the old scaler
really support PAL8 output, imgconvert supported a fixed 666 palette
as output and swscale supports fixed 884 and 422.
Originally committed as revision 15305 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -263,11 +263,11 @@ LAVF_REG = tests/data/lavf.regression ROTOZOOM_REG = tests/data/rotozoom.regression VSYNTH_REG = tests/data/vsynth.regression -ifeq ($(CONFIG_SWSCALE),yes) +ifneq ($(CONFIG_SWSCALE),yes) servertest codectest $(CODEC_TESTS) libavtest: swscale_error swscale_error: @echo - @echo "This regression test is incompatible with --enable-swscale." + @echo "This regression test requires --enable-swscale." @echo @exit 1 endif |