Mercurial > mplayer.hg
view postproc/Makefile @ 17149:9a0a376a54b1
Move audio packets reordering from codec interface to demuxers for real
files (old and new format), pass only real extradata to the codec
Enable cook codec from lavc, prefer lavc codecs for 14_4 and 28_8
formats. Disable internal 28_8, it's broken now and will be removed soon
author | rtognimp |
---|---|
date | Fri, 09 Dec 2005 16:25:37 +0000 |
parents | d2aef091743c |
children | ce1ba8fd57e7 |
line wrap: on
line source
include ../config.mak SWSLIB = libswscale.a SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c SWSOBJS=$(SWSSRCS:.c=.o) ifeq ($(TARGET_ALTIVEC),yes) SWSOBJS += yuv2rgb_altivec.o endif CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC) # -I/usr/X11R6/include/ .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -I.. -o $@ $< all: $(SWSLIB) $(SWSLIB): $(SWSOBJS) $(AR) r $(SWSLIB) $(SWSOBJS) $(RANLIB) $(SWSLIB) clean: rm -f *.o *.a *~ *.so cs_test swscale-example distclean: rm -f Makefile.bak *.o *.a *~ *.so .depend cs_test swscale-example dep: depend depend: $(CC) -MM $(CFLAGS) $(SWSSRCS) 1>.depend cs_test: cs_test.o $(SWSLIB) $(CC) cs_test.o $(SWSLIB) ../cpudetect.o -DFOR_MENCODER ../mp_msg.c -o cs_test -W -Wall swscale-example: swscale-example.o $(SWSLIB) $(CC) swscale-example.o $(SWSLIB) ../libmpcodecs/img_format.o -lm -o swscale-example -W -Wall # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif