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