Mercurial > mplayer.hg
view postproc/Makefile @ 11623:ecaf7047b6e8
Patch from the author, Zoltan Hidvegi:
The filmdint filter does not handle NTSC "telecined" 15fps movies
where there is a frame break in the middle of every second NTSC frame,
it outputs only 15 frames for every 30 input frames, ignoring the io
option. You can notice this during encoding such a sequence you will
have lots of diplicate frames / skip frames messages. The patch below
fixes this.
author | rfelker |
---|---|
date | Thu, 11 Dec 2003 04:47:42 +0000 |
parents | 5fd0864becc3 |
children | 80973aa180a5 |
line wrap: on
line source
include ../config.mak SWSLIB = libswscale.a SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c SWSOBJS=$(SWSSRCS:.c=.o) 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) 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