Mercurial > libavcodec.hg
comparison libpostproc/Makefile @ 508:8f9fa4ec9cbb libavcodec
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 :((((
| author | michael |
|---|---|
| date | Sat, 29 Jun 2002 15:01:23 +0000 |
| parents | dfdac3e25dcd |
| children | 015b33f3e750 |
comparison
equal
deleted
inserted
replaced
| 507:b5b91e89b88c | 508:8f9fa4ec9cbb |
|---|---|
| 3 | 3 |
| 4 LIBNAME = libpostproc.a | 4 LIBNAME = libpostproc.a |
| 5 | 5 |
| 6 SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c | 6 SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c |
| 7 OBJS=$(SRCS:.c=.o) | 7 OBJS=$(SRCS:.c=.o) |
| 8 CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o | |
| 8 | 9 |
| 9 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC) | 10 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC) |
| 10 # -I/usr/X11R6/include/ | 11 # -I/usr/X11R6/include/ |
| 11 | 12 |
| 12 .SUFFIXES: .c .o | 13 .SUFFIXES: .c .o |
| 30 dep: depend | 31 dep: depend |
| 31 | 32 |
| 32 depend: | 33 depend: |
| 33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | 34 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
| 34 | 35 |
| 36 cs_test: $(CS_TEST_OBJS) | |
| 37 $(CC) $(CS_TEST_OBJS) -o cs_test | |
| 38 | |
| 35 # | 39 # |
| 36 # include dependency files if they exist | 40 # include dependency files if they exist |
| 37 # | 41 # |
| 38 ifneq ($(wildcard .depend),) | 42 ifneq ($(wildcard .depend),) |
| 39 include .depend | 43 include .depend |
