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