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