# HG changeset patch # User michael # Date 1025362883 0 # Node ID 8f9fa4ec9cbbdb94f9859c17054004448355660b # Parent b5b91e89b88c41dfe587f5fe9d97f05046513a52 colorspace converter tests (memory corruption tests at different width/src/dst) quite impressive results only 1 of the 13 rgb->rgb converters fails for the c versions ... sadly only 1 of the mmx converters passes though :( ... i feared allready that last mplayerxp merge reversed the bugfixes :(((( diff -r b5b91e89b88c -r 8f9fa4ec9cbb libpostproc/Makefile --- a/libpostproc/Makefile Thu Jun 27 13:21:16 2002 +0000 +++ b/libpostproc/Makefile Sat Jun 29 15:01:23 2002 +0000 @@ -5,6 +5,7 @@ SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c OBJS=$(SRCS:.c=.o) +CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC) # -I/usr/X11R6/include/ @@ -32,6 +33,9 @@ depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend +cs_test: $(CS_TEST_OBJS) + $(CC) $(CS_TEST_OBJS) -o cs_test + # # include dependency files if they exist #