]> git.sesse.net Git - x264/blob - Makefile
Switch to exponential interpolation between presets.
[x264] / Makefile
1 # Makefile
2
3 include config.mak
4
5 vpath %.c $(SRCPATH)
6 vpath %.h $(SRCPATH)
7 vpath %.S $(SRCPATH)
8 vpath %.asm $(SRCPATH)
9 vpath %.rc $(SRCPATH)
10
11 GENERATED =
12
13 all: default
14 default:
15
16 SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \
17        common/frame.c common/dct.c common/cpu.c common/cabac.c \
18        common/common.c common/osdep.c common/rectangle.c \
19        common/set.c common/quant.c common/deblock.c common/vlc.c \
20        common/mvpred.c common/bitstream.c \
21        encoder/analyse.c encoder/me.c encoder/ratecontrol.c \
22        encoder/set.c encoder/macroblock.c encoder/cabac.c \
23        encoder/speed.c \
24        encoder/cavlc.c encoder/encoder.c encoder/lookahead.c
25
26 SRCCLI = x264.c input/input.c input/timecode.c input/raw.c input/y4m.c \
27          output/raw.c output/matroska.c output/matroska_ebml.c \
28          output/flv.c output/flv_bytestream.c filters/filters.c \
29          filters/video/video.c filters/video/source.c filters/video/internal.c \
30          filters/video/resize.c filters/video/cache.c filters/video/fix_vfr_pts.c \
31          filters/video/select_every.c filters/video/crop.c filters/video/depth.c
32
33 SRCSO =
34 OBJS =
35 OBJSO =
36 OBJCLI =
37
38 OBJCHK = tools/checkasm.o
39
40 OBJEXAMPLE = example.o
41
42 CONFIG := $(shell cat config.h)
43
44 # GPL-only files
45 ifneq ($(findstring HAVE_GPL 1, $(CONFIG)),)
46 SRCCLI +=
47 endif
48
49 # Optional module sources
50 ifneq ($(findstring HAVE_AVS 1, $(CONFIG)),)
51 SRCCLI += input/avs.c
52 endif
53
54 ifneq ($(findstring HAVE_THREAD 1, $(CONFIG)),)
55 SRCCLI += input/thread.c
56 SRCS   += common/threadpool.c
57 endif
58
59 ifneq ($(findstring HAVE_WIN32THREAD 1, $(CONFIG)),)
60 SRCS += common/win32thread.c
61 endif
62
63 ifneq ($(findstring HAVE_LAVF 1, $(CONFIG)),)
64 SRCCLI += input/lavf.c
65 endif
66
67 ifneq ($(findstring HAVE_FFMS 1, $(CONFIG)),)
68 SRCCLI += input/ffms.c
69 endif
70
71 ifneq ($(findstring HAVE_GPAC 1, $(CONFIG)),)
72 SRCCLI += output/mp4.c
73 endif
74
75 ifneq ($(findstring HAVE_LSMASH 1, $(CONFIG)),)
76 SRCCLI += output/mp4_lsmash.c
77 endif
78
79 # MMX/SSE optims
80 ifneq ($(AS),)
81 X86SRC0 = const-a.asm cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm \
82           mc-a2.asm pixel-a.asm predict-a.asm quant-a.asm \
83           cpu-a.asm dct-32.asm bitstream-a.asm
84 ifneq ($(findstring HIGH_BIT_DEPTH, $(CONFIG)),)
85 X86SRC0 += sad16-a.asm
86 else
87 X86SRC0 += sad-a.asm
88 endif
89 X86SRC = $(X86SRC0:%=common/x86/%)
90
91 ifeq ($(SYS_ARCH),X86)
92 ARCH_X86 = yes
93 ASMSRC   = $(X86SRC) common/x86/pixel-32.asm
94 endif
95
96 ifeq ($(SYS_ARCH),X86_64)
97 ARCH_X86 = yes
98 ASMSRC   = $(X86SRC:-32.asm=-64.asm) common/x86/trellis-64.asm
99 endif
100
101 ifdef ARCH_X86
102 SRCS   += common/x86/mc-c.c common/x86/predict-c.c
103 OBJASM  = $(ASMSRC:%.asm=%.o)
104 $(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm
105 OBJCHK += tools/checkasm-a.o
106 endif
107 endif
108
109 # AltiVec optims
110 ifeq ($(SYS_ARCH),PPC)
111 ifneq ($(AS),)
112 SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \
113         common/ppc/quant.c common/ppc/deblock.c \
114         common/ppc/predict.c
115 endif
116 endif
117
118 # NEON optims
119 ifeq ($(SYS_ARCH),ARM)
120 ifneq ($(AS),)
121 ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \
122           common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \
123           common/arm/predict-a.S common/arm/bitstream-a.S
124 SRCS   += common/arm/mc-c.c common/arm/predict-c.c
125 OBJASM  = $(ASMSRC:%.S=%.o)
126 OBJCHK += tools/checkasm-arm.o
127 endif
128 endif
129
130 # AArch64 NEON optims
131 ifeq ($(SYS_ARCH),AARCH64)
132 ifneq ($(AS),)
133 ASMSRC += common/aarch64/bitstream-a.S \
134           common/aarch64/cabac-a.S     \
135           common/aarch64/dct-a.S     \
136           common/aarch64/deblock-a.S \
137           common/aarch64/mc-a.S      \
138           common/aarch64/pixel-a.S   \
139           common/aarch64/predict-a.S \
140           common/aarch64/quant-a.S
141 SRCS   += common/aarch64/asm-offsets.c \
142           common/aarch64/mc-c.c        \
143           common/aarch64/predict-c.c
144 OBJASM  = $(ASMSRC:%.S=%.o)
145 OBJCHK += tools/checkasm-aarch64.o
146 endif
147 endif
148
149 # MSA optims
150 ifeq ($(SYS_ARCH),MIPS)
151 ifneq ($(findstring HAVE_MSA 1, $(CONFIG)),)
152 SRCS += common/mips/mc-c.c common/mips/dct-c.c \
153         common/mips/deblock-c.c common/mips/pixel-c.c \
154         common/mips/predict-c.c common/mips/quant-c.c
155 endif
156 endif
157
158 ifneq ($(HAVE_GETOPT_LONG),1)
159 SRCCLI += extras/getopt.c
160 endif
161
162 ifeq ($(SYS),WINDOWS)
163 OBJCLI += $(if $(RC), x264res.o)
164 ifneq ($(SONAME),)
165 SRCSO  += x264dll.c
166 OBJSO  += $(if $(RC), x264res.dll.o)
167 endif
168 endif
169
170 ifeq ($(HAVE_OPENCL),yes)
171 common/oclobj.h: common/opencl/x264-cl.h $(wildcard $(SRCPATH)/common/opencl/*.cl)
172         cat $^ | $(SRCPATH)/tools/cltostr.sh $@
173 GENERATED += common/oclobj.h
174 SRCS += common/opencl.c encoder/slicetype-cl.c
175 endif
176
177 OBJS   += $(SRCS:%.c=%.o)
178 OBJCLI += $(SRCCLI:%.c=%.o)
179 OBJSO  += $(SRCSO:%.c=%.o)
180
181 .PHONY: all default fprofiled clean distclean install install-* uninstall cli lib-* etags
182
183 cli: x264$(EXE)
184 lib-static: $(LIBX264)
185 lib-shared: $(SONAME)
186
187 $(LIBX264): $(GENERATED) .depend $(OBJS) $(OBJASM)
188         rm -f $(LIBX264)
189         $(AR)$@ $(OBJS) $(OBJASM)
190         $(if $(RANLIB), $(RANLIB) $@)
191
192 $(SONAME): $(GENERATED) .depend $(OBJS) $(OBJASM) $(OBJSO)
193         $(LD)$@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS)
194
195 ifneq ($(EXE),)
196 .PHONY: x264 checkasm example
197 x264: x264$(EXE)
198 checkasm: checkasm$(EXE)
199 example: example$(EXE)
200 endif
201
202 x264$(EXE): $(GENERATED) .depend $(OBJCLI) $(CLI_LIBX264)
203         $(LD)$@ $(OBJCLI) $(CLI_LIBX264) $(LDFLAGSCLI) $(LDFLAGS)
204
205 checkasm$(EXE): $(GENERATED) .depend $(OBJCHK) $(LIBX264)
206         $(LD)$@ $(OBJCHK) $(LIBX264) $(LDFLAGS)
207
208 example$(EXE): $(GENERATED) .depend $(OBJEXAMPLE) $(LIBX264)
209         $(LD)$@ $(OBJEXAMPLE) $(LIBX264) $(LDFLAGS)
210
211 $(OBJS) $(OBJASM) $(OBJSO) $(OBJCLI) $(OBJCHK) $(OBJEXAMPLE): .depend
212
213 %.o: %.asm common/x86/x86inc.asm common/x86/x86util.asm
214         $(AS) $(ASFLAGS) -o $@ $<
215         -@ $(if $(STRIP), $(STRIP) -x $@) # delete local/anonymous symbols, so they don't show up in oprofile
216
217 %.o: %.S
218         $(AS) $(ASFLAGS) -o $@ $<
219         -@ $(if $(STRIP), $(STRIP) -x $@) # delete local/anonymous symbols, so they don't show up in oprofile
220
221 %.dll.o: %.rc x264.h
222         $(RC) $(RCFLAGS)$@ -DDLL $<
223
224 %.o: %.rc x264.h
225         $(RC) $(RCFLAGS)$@ $<
226
227 .depend: config.mak
228         @rm -f .depend
229         @echo 'dependency file generation...'
230 ifeq ($(COMPILER),CL)
231         @$(foreach SRC, $(addprefix $(SRCPATH)/, $(SRCS) $(SRCCLI) $(SRCSO)), $(SRCPATH)/tools/msvsdepend.sh "$(CC)" "$(CFLAGS)" "$(SRC)" "$(SRC:$(SRCPATH)/%.c=%.o)" 1>> .depend;)
232 else
233         @$(foreach SRC, $(addprefix $(SRCPATH)/, $(SRCS) $(SRCCLI) $(SRCSO)), $(CC) $(CFLAGS) $(SRC) $(DEPMT) $(SRC:$(SRCPATH)/%.c=%.o) $(DEPMM) 1>> .depend;)
234 endif
235
236 config.mak:
237         ./configure
238
239 depend: .depend
240 ifneq ($(wildcard .depend),)
241 include .depend
242 endif
243
244 SRC2 = $(SRCS) $(SRCCLI)
245 # These should cover most of the important codepaths
246 OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb
247 OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0  --slice-max-mbs 50
248 OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500
249 OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree
250 OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4
251 OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2
252 OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall
253 OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac
254
255 ifeq (,$(VIDS))
256 fprofiled:
257         @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."'
258         @echo 'where infiles are anything that x264 understands,'
259         @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.'
260 else
261 fprofiled:
262         $(MAKE) clean
263         $(MAKE) x264$(EXE) CFLAGS="$(CFLAGS) $(PROF_GEN_CC)" LDFLAGS="$(LDFLAGS) $(PROF_GEN_LD)"
264         $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;))
265 ifeq ($(COMPILER),CL)
266 # Because Visual Studio timestamps the object files within the PGD, it fails to build if they change - only the executable should be deleted
267         rm -f x264$(EXE)
268 else
269         rm -f $(SRC2:%.c=%.o)
270 endif
271         $(MAKE) CFLAGS="$(CFLAGS) $(PROF_USE_CC)" LDFLAGS="$(LDFLAGS) $(PROF_USE_LD)"
272         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) *.dyn pgopti.dpi pgopti.dpi.lock *.pgd *.pgc
273 endif
274
275 clean:
276         rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a *.lib *.exp *.pdb x264 x264.exe .depend TAGS
277         rm -f checkasm checkasm.exe $(OBJCHK) $(GENERATED) x264_lookahead.clbin
278         rm -f example example.exe $(OBJEXAMPLE)
279         rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) *.dyn pgopti.dpi pgopti.dpi.lock *.pgd *.pgc
280
281 distclean: clean
282         rm -f config.mak x264_config.h config.h config.log x264.pc x264.def conftest*
283
284 install-cli: cli
285         $(INSTALL) -d $(DESTDIR)$(bindir)
286         $(INSTALL) x264$(EXE) $(DESTDIR)$(bindir)
287
288 install-lib-dev:
289         $(INSTALL) -d $(DESTDIR)$(includedir)
290         $(INSTALL) -d $(DESTDIR)$(libdir)
291         $(INSTALL) -d $(DESTDIR)$(libdir)/pkgconfig
292         $(INSTALL) -m 644 $(SRCPATH)/x264.h $(DESTDIR)$(includedir)
293         $(INSTALL) -m 644 x264_config.h $(DESTDIR)$(includedir)
294         $(INSTALL) -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig
295
296 install-lib-static: lib-static install-lib-dev
297         $(INSTALL) -m 644 $(LIBX264) $(DESTDIR)$(libdir)
298         $(if $(RANLIB), $(RANLIB) $(DESTDIR)$(libdir)/$(LIBX264))
299
300 install-lib-shared: lib-shared install-lib-dev
301 ifneq ($(IMPLIBNAME),)
302         $(INSTALL) -d $(DESTDIR)$(bindir)
303         $(INSTALL) -m 755 $(SONAME) $(DESTDIR)$(bindir)
304         $(INSTALL) -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir)
305 else ifneq ($(SONAME),)
306         ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)
307         $(INSTALL) -m 755 $(SONAME) $(DESTDIR)$(libdir)
308 endif
309
310 uninstall:
311         rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(includedir)/x264_config.h $(DESTDIR)$(libdir)/libx264.a
312         rm -f $(DESTDIR)$(bindir)/x264$(EXE) $(DESTDIR)$(libdir)/pkgconfig/x264.pc
313 ifneq ($(IMPLIBNAME),)
314         rm -f $(DESTDIR)$(bindir)/$(SONAME) $(DESTDIR)$(libdir)/$(IMPLIBNAME)
315 else ifneq ($(SONAME),)
316         rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX)
317 endif
318
319 etags: TAGS
320
321 TAGS:
322         etags $(SRCS)