]> git.sesse.net Git - x264/blob - Makefile
Enhanced Avisynth input support
[x264] / Makefile
1 # Makefile
2
3 include config.mak
4
5 all: default
6
7 SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \
8        common/frame.c common/dct.c common/cpu.c common/cabac.c \
9        common/common.c common/mdate.c common/set.c \
10        common/quant.c common/vlc.c \
11        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
12        encoder/set.c encoder/macroblock.c encoder/cabac.c \
13        encoder/cavlc.c encoder/encoder.c encoder/lookahead.c
14
15 SRCCLI = x264.c input/yuv.c input/y4m.c output/raw.c \
16          output/matroska.c output/matroska_ebml.c \
17          output/flv.c output/flv_bytestream.c
18
19 MUXERS := $(shell grep -E "(IN|OUT)PUT" config.h)
20
21 # Optional muxer module sources
22 ifneq ($(findstring VFW_INPUT, $(MUXERS)),)
23 SRCCLI += input/vfw.c
24 endif
25
26 ifneq ($(findstring AVS_INPUT, $(MUXERS)),)
27 SRCCLI += input/avs.c
28 endif
29
30 ifneq ($(findstring HAVE_PTHREAD, $(CFLAGS)),)
31 SRCCLI += input/thread.c
32 endif
33
34 ifneq ($(findstring MP4_OUTPUT, $(MUXERS)),)
35 SRCCLI += output/mp4.c
36 endif
37
38 # Visualization sources
39 ifeq ($(VIS),yes)
40 SRCS   += common/visualize.c common/display-x11.c
41 endif
42
43 # MMX/SSE optims
44 ifneq ($(AS),)
45 X86SRC0 = cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm mc-a2.asm \
46           pixel-a.asm predict-a.asm quant-a.asm sad-a.asm \
47           cpu-a.asm dct-32.asm
48 X86SRC = $(X86SRC0:%=common/x86/%)
49
50 ifeq ($(ARCH),X86)
51 ARCH_X86 = yes
52 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
53 endif
54
55 ifeq ($(ARCH),X86_64)
56 ARCH_X86 = yes
57 ASMSRC   = $(X86SRC:-32.asm=-64.asm)
58 ASFLAGS += -DARCH_X86_64
59 endif
60
61 ifdef ARCH_X86
62 ASFLAGS += -Icommon/x86/
63 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
64 OBJASM  = $(ASMSRC:%.asm=%.o)
65 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
66 checkasm: tools/checkasm-a.o
67 endif
68 endif
69
70 # AltiVec optims
71 ifeq ($(ARCH),PPC)
72 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
73         common/ppc/quant.c common/ppc/deblock.c \
74         common/ppc/predict.c
75 endif
76
77 # NEON optims
78 ifeq ($(ARCH),ARM)
79 ifneq ($(AS),)
80 ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \
81           common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \
82           common/arm/predict-a.S
83 SRCS   += common/arm/mc-c.c common/arm/predict-c.c
84 OBJASM  = $(ASMSRC:%.S=%.o)
85 endif
86 endif
87
88 # VIS optims
89 ifeq ($(ARCH),UltraSparc)
90 ASMSRC += common/sparc/pixel.asm
91 OBJASM  = $(ASMSRC:%.asm=%.o)
92 endif
93
94 ifneq ($(HAVE_GETOPT_LONG),1)
95 SRCS += extras/getopt.c
96 endif
97
98 OBJS = $(SRCS:%.c=%.o)
99 OBJCLI = $(SRCCLI:%.c=%.o)
100 DEP  = depend
101
102 .PHONY: all default fprofiled clean distclean install uninstall dox test testclean
103
104 default: $(DEP) x264$(EXE)
105
106 libx264.a: .depend $(OBJS) $(OBJASM)
107         $(AR) rc libx264.a $(OBJS) $(OBJASM)
108         $(RANLIB) libx264.a
109
110 $(SONAME): .depend $(OBJS) $(OBJASM)
111         $(CC) -shared -o $@ $(OBJS) $(OBJASM) $(SOFLAGS) $(LDFLAGS)
112
113 x264$(EXE): $(OBJCLI) libx264.a 
114         $(CC) -o $@ $+ $(LDFLAGS)
115
116 checkasm: tools/checkasm.o libx264.a
117         $(CC) -o $@ $+ $(LDFLAGS)
118
119 %.o: %.asm
120         $(AS) $(ASFLAGS) -o $@ $<
121         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
122
123 %.o: %.S
124         $(AS) $(ASFLAGS) -o $@ $<
125         -@ $(STRIP) -x $@ # delete local/anonymous symbols, so they don't show up in oprofile
126
127 .depend: config.mak
128         rm -f .depend
129         $(foreach SRC, $(SRCS) $(SRCCLI), $(CC) $(CFLAGS) $(ALTIVECFLAGS) $(SRC) -MT $(SRC:%.c=%.o) -MM -g0 1>> .depend;)
130
131 config.mak:
132         ./configure
133
134 depend: .depend
135 ifneq ($(wildcard .depend),)
136 include .depend
137 endif
138
139 SRC2 = $(SRCS) $(SRCCLI)
140 # These should cover most of the important codepaths
141 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
142 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
143 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
144 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
145 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
146 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
147 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
148 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
149
150 ifeq (,$(VIDS))
151 fprofiled:
152         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
153         @echo 'where infiles are anything that x264 understands,'
154         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
155 else
156 fprofiled:
157         $(MAKE) clean
158         mv config.mak config.mak2
159         sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak
160         $(MAKE) x264$(EXE)
161         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
162         rm -f $(SRC2:%.c=%.o)
163         sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak
164         $(MAKE)
165         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
166         mv config.mak2 config.mak
167 endif
168
169 clean:
170         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS
171         rm -f checkasm checkasm.exe tools/checkasm.o tools/checkasm-a.o
172         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno)
173         - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak
174
175 distclean: clean
176         rm -f config.mak config.h x264.pc
177         rm -rf test/
178
179 install: x264$(EXE) $(SONAME)
180         install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir)
181         install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig
182         install -m 644 x264.h $(DESTDIR)$(includedir)
183         install -m 644 libx264.a $(DESTDIR)$(libdir)
184         install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
185         install x264$(EXE) $(DESTDIR)$(bindir)
186         $(RANLIB) $(DESTDIR)$(libdir)/libx264.a
187 ifeq ($(SYS),MINGW)
188         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(bindir))
189 else
190         $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
191         $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir))
192 endif
193         $(if $(IMPLIBNAME), install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir))
194
195 uninstall:
196         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a
197         rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc
198         $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX))
199
200 etags: TAGS
201
202 TAGS:
203         etags $(SRCS)
204
205 dox:
206         doxygen Doxyfile
207
208 ifeq (,$(VIDS))
209 test:
210         @echo 'usage: make test VIDS="infile1 infile2 ..."'
211         @echo 'where infiles are anything that x264 understands,'
212         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
213 else
214 test:
215         perl tools/regression-test.pl --version=head,current --options='$(OPT0)' --options='$(OPT1)' --options='$(OPT2)' $(VIDS:%=--input=%)
216 endif
217
218 testclean:
219         rm -f test/*.log test/*.264
220         $(foreach DIR, $(wildcard test/x264-r*/), cd $(DIR) ; make clean ; cd ../.. ;)