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