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