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