[Ffmpeg-devel] swscale failed tests
Diego Biurrun
diego
Wed Jan 10 15:20:50 CET 2007
On Mon, Jan 08, 2007 at 04:28:27PM +0100, Luca Abeni wrote:
>
> On Sat, 2007-01-06 at 16:01 +0100, Diego Biurrun wrote:
> [...]
> > Nit: Missing period at the end.
> >
> > Also, there is no such thing as libswscaleR.
> [...]
> > What if I call codectest or libavtest directly?
> > I think your patch will not help then...
> What about the attached patch?
> I changed "libswscaler" in "the software scaler", and repeated the
> "ifeq" around all the *test targets.
Better, but still too complicated ;)
> --- tests/Makefile (revision 7425)
> +++ tests/Makefile (working copy)
> @@ -18,15 +18,35 @@
>
> +ifeq ($(CONFIG_SWSCALER),yes)
> +test-server:
> + @echo
> + @echo "Cannot perform server tests if the software scaler is enabled."
> + @echo
Does the server regression test fail with the software scaler enabled?
I cannot test this on PPC.
Anyway, no need to duplicate the warning, try something like the
following (untested, but should work):
ifeq ($(CONFIG_SWSCALER),yes)
test-server: swscalerwarning
else
swscalerwarning:
@echo
@echo "Regression tests are incompatible with the software scaler."
@echo
Diego
More information about the ffmpeg-devel
mailing list