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