X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=Makefile;h=7a22c42bd39786bebebd12ce75c5b1ac3fbf1a25;hb=44d2f0885cd95201b67ed54bab88e91f4ba1556e;hp=5c49c2f4075d44262ee66b6afada1e5914deb207;hpb=0fe97f423591939454ac7d272fe5fb5dde837b3f;p=x264 diff --git a/Makefile b/Makefile index 5c49c2f4..7a22c42b 100644 --- a/Makefile +++ b/Makefile @@ -2,100 +2,201 @@ include config.mak +vpath %.c $(SRCPATH) +vpath %.h $(SRCPATH) +vpath %.S $(SRCPATH) +vpath %.asm $(SRCPATH) +vpath %.rc $(SRCPATH) + +all: default +default: + SRCS = common/mc.c common/predict.c common/pixel.c common/macroblock.c \ common/frame.c common/dct.c common/cpu.c common/cabac.c \ - common/common.c common/mdate.c common/csp.c common/set.c \ - common/quant.c \ + common/common.c common/osdep.c common/rectangle.c \ + common/set.c common/quant.c common/deblock.c common/vlc.c \ + common/mvpred.c common/bitstream.c \ encoder/analyse.c encoder/me.c encoder/ratecontrol.c \ encoder/set.c encoder/macroblock.c encoder/cabac.c \ - encoder/cavlc.c encoder/encoder.c encoder/eval.c + encoder/cavlc.c encoder/encoder.c encoder/lookahead.c + +SRCCLI = x264.c input/input.c input/timecode.c input/raw.c input/y4m.c \ + output/raw.c output/matroska.c output/matroska_ebml.c \ + output/flv.c output/flv_bytestream.c filters/filters.c \ + filters/video/video.c filters/video/source.c filters/video/internal.c \ + filters/video/resize.c filters/video/cache.c filters/video/fix_vfr_pts.c \ + filters/video/select_every.c filters/video/crop.c filters/video/depth.c + +SRCSO = +OBJS = +OBJSO = +OBJCLI = + +OBJCHK = tools/checkasm.o + +CONFIG := $(shell cat config.h) + +# GPL-only files +ifneq ($(findstring HAVE_GPL 1, $(CONFIG)),) +SRCCLI += +endif + +# Optional module sources +ifneq ($(findstring HAVE_AVS 1, $(CONFIG)),) +SRCCLI += input/avs.c +endif + +ifneq ($(findstring HAVE_THREAD 1, $(CONFIG)),) +SRCCLI += input/thread.c +SRCS += common/threadpool.c +endif + +ifneq ($(findstring HAVE_WIN32THREAD 1, $(CONFIG)),) +SRCS += common/win32thread.c +endif + +ifneq ($(findstring HAVE_LAVF 1, $(CONFIG)),) +SRCCLI += input/lavf.c +endif + +ifneq ($(findstring HAVE_FFMS 1, $(CONFIG)),) +SRCCLI += input/ffms.c +endif -SRCCLI = x264.c matroska.c muxers.c +ifneq ($(findstring HAVE_GPAC 1, $(CONFIG)),) +SRCCLI += output/mp4.c +endif # Visualization sources -ifeq ($(VIS),yes) +ifneq ($(findstring HAVE_VISUALIZE 1, $(CONFIG)),) SRCS += common/visualize.c common/display-x11.c endif # MMX/SSE optims +ifneq ($(AS),) +X86SRC0 = const-a.asm cabac-a.asm dct-a.asm deblock-a.asm mc-a.asm \ + mc-a2.asm pixel-a.asm predict-a.asm quant-a.asm \ + cpu-a.asm dct-32.asm bitstream-a.asm +ifneq ($(findstring HIGH_BIT_DEPTH, $(CONFIG)),) +X86SRC0 += sad16-a.asm +else +X86SRC0 += sad-a.asm +endif +X86SRC = $(X86SRC0:%=common/x86/%) + ifeq ($(ARCH),X86) -SRCS += common/i386/mc-c.c common/i386/predict-c.c -ASMSRC = common/i386/dct-a.asm common/i386/cpu-a.asm \ - common/i386/pixel-a.asm common/i386/mc-a.asm \ - common/i386/mc-a2.asm common/i386/predict-a.asm \ - common/i386/pixel-sse2.asm common/i386/quant-a.asm \ - common/i386/deblock-a.asm -OBJASM = $(ASMSRC:%.asm=%.o) -ASFLAGS += -Icommon/i386/ +ARCH_X86 = yes +ASMSRC = $(X86SRC) common/x86/pixel-32.asm +ASFLAGS += -DARCH_X86_64=0 endif -# MMX/SSE optims ifeq ($(ARCH),X86_64) -SRCS += common/i386/mc-c.c common/i386/predict-c.c -ASMSRC = common/amd64/dct-a.asm common/amd64/cpu-a.asm \ - common/amd64/pixel-a.asm common/amd64/mc-a.asm \ - common/amd64/mc-a2.asm common/amd64/predict-a.asm \ - common/amd64/pixel-sse2.asm common/amd64/quant-a.asm \ - common/amd64/deblock-a.asm +ARCH_X86 = yes +ASMSRC = $(X86SRC:-32.asm=-64.asm) common/x86/trellis-64.asm +ASFLAGS += -DARCH_X86_64=1 +endif + +ifdef ARCH_X86 +ASFLAGS += -I$(SRCPATH)/common/x86/ +SRCS += common/x86/mc-c.c common/x86/predict-c.c OBJASM = $(ASMSRC:%.asm=%.o) -ASFLAGS += -Icommon/amd64 +$(OBJASM): common/x86/x86inc.asm common/x86/x86util.asm +OBJCHK += tools/checkasm-a.o +endif endif # AltiVec optims ifeq ($(ARCH),PPC) +ifneq ($(AS),) SRCS += common/ppc/mc.c common/ppc/pixel.c common/ppc/dct.c \ - common/ppc/quant.c + common/ppc/quant.c common/ppc/deblock.c \ + common/ppc/predict.c +endif +endif + +# NEON optims +ifeq ($(ARCH),ARM) +ifneq ($(AS),) +ASMSRC += common/arm/cpu-a.S common/arm/pixel-a.S common/arm/mc-a.S \ + common/arm/dct-a.S common/arm/quant-a.S common/arm/deblock-a.S \ + common/arm/predict-a.S +SRCS += common/arm/mc-c.c common/arm/predict-c.c +OBJASM = $(ASMSRC:%.S=%.o) +endif endif # VIS optims -ifeq ($(ARCH),UltraSparc) +ifeq ($(ARCH),UltraSPARC) +ifeq ($(findstring HIGH_BIT_DEPTH, $(CONFIG)),) ASMSRC += common/sparc/pixel.asm OBJASM = $(ASMSRC:%.asm=%.o) endif +endif ifneq ($(HAVE_GETOPT_LONG),1) -SRCS += extras/getopt.c +SRCCLI += extras/getopt.c endif -OBJS = $(SRCS:%.c=%.o) -OBJCLI = $(SRCCLI:%.c=%.o) -DEP = depend +ifeq ($(SYS),WINDOWS) +OBJCLI += $(if $(RC), x264res.o) +ifneq ($(SONAME),) +SRCSO += x264dll.c +OBJSO += $(if $(RC), x264res.dll.o) +endif +endif -.PHONY: all default fprofiled clean distclean install install-gtk uninstall -all: default +OBJS += $(SRCS:%.c=%.o) +OBJCLI += $(SRCCLI:%.c=%.o) +OBJSO += $(SRCSO:%.c=%.o) -default: $(DEP) x264$(EXE) +.PHONY: all default fprofiled clean distclean install uninstall lib-static lib-shared cli install-lib-dev install-lib-static install-lib-shared install-cli -libx264.a: .depend $(OBJS) $(OBJASM) - ar rc libx264.a $(OBJS) $(OBJASM) - ranlib libx264.a +cli: x264$(EXE) +lib-static: $(LIBX264) +lib-shared: $(SONAME) -$(SONAME): .depend $(OBJS) $(OBJASM) - $(CC) -shared -o $@ $(OBJS) $(OBJASM) -Wl,-soname,$(SONAME) $(LDFLAGS) +$(LIBX264): .depend $(OBJS) $(OBJASM) + rm -f $(LIBX264) + $(AR)$@ $(OBJS) $(OBJASM) + $(if $(RANLIB), $(RANLIB) $@) -x264$(EXE): $(OBJCLI) libx264.a - $(CC) -o $@ $+ $(LDFLAGS) +$(SONAME): .depend $(OBJS) $(OBJASM) $(OBJSO) + $(LD)$@ $(OBJS) $(OBJASM) $(OBJSO) $(SOFLAGS) $(LDFLAGS) -libx264gtk.a: muxers.o libx264.a - $(MAKE) -C gtk +ifneq ($(EXE),) +.PHONY: x264 checkasm +x264: x264$(EXE) +checkasm: checkasm$(EXE) +endif + +x264$(EXE): .depend $(OBJCLI) $(CLI_LIBX264) + $(LD)$@ $(OBJCLI) $(CLI_LIBX264) $(LDFLAGSCLI) $(LDFLAGS) + +checkasm$(EXE): .depend $(OBJCHK) $(LIBX264) + $(LD)$@ $(OBJCHK) $(LIBX264) $(LDFLAGS) -checkasm: tools/checkasm.o libx264.a - $(CC) -o $@ $+ $(LDFLAGS) +$(OBJS) $(OBJASM) $(OBJSO) $(OBJCLI) $(OBJCHK): .depend -common/amd64/*.o: common/amd64/amd64inc.asm -common/i386/*.o: common/i386/i386inc.asm %.o: %.asm $(AS) $(ASFLAGS) -o $@ $< -# delete local/anonymous symbols, so they don't show up in oprofile - -@ strip -x $@ + -@ $(if $(STRIP), $(STRIP) -x $@) # delete local/anonymous symbols, so they don't show up in oprofile + +%.o: %.S + $(AS) $(ASFLAGS) -o $@ $< + -@ $(if $(STRIP), $(STRIP) -x $@) # delete local/anonymous symbols, so they don't show up in oprofile + +%.dll.o: %.rc x264.h + $(RC) $(RCFLAGS)$@ -DDLL $< + +%.o: %.rc x264.h + $(RC) $(RCFLAGS)$@ $< .depend: config.mak - rm -f .depend -# Hacky - because gcc 2.9x doesn't have -MT - $(foreach SRC, $(SRCS) $(SRCCLI), ( $(ECHON) "`dirname $(SRC)`/" && $(CC) $(CFLAGS) $(SRC) -MM -g0 ) 1>> .depend;) + @rm -f .depend + @$(foreach SRC, $(addprefix $(SRCPATH)/, $(SRCS) $(SRCCLI) $(SRCSO)), $(CC) $(CFLAGS) $(SRC) $(DEPMT) $(SRC:$(SRCPATH)/%.c=%.o) $(DEPMM) 1>> .depend;) -config.mak: $(wildcard .svn/entries */.svn/entries */*/.svn/entries) - ./configure $(CONFIGURE_ARGS) +config.mak: + ./configure depend: .depend ifneq ($(wildcard .depend),) @@ -104,60 +205,72 @@ endif SRC2 = $(SRCS) $(SRCCLI) # These should cover most of the important codepaths -OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac -OPT1 = --crf 18 -b2 -m3 -r3 --me hex -8 --cqm jvt --direct spatial -OPT2 = --crf 24 -b3 -m6 -r6 --me umh -8 -w -t1 -A all --b-pyramid --b-rdo --mixed-refs +OPT0 = --crf 30 -b1 -m1 -r1 --me dia --no-cabac --direct temporal --ssim --no-weightb +OPT1 = --crf 16 -b2 -m3 -r3 --me hex --no-8x8dct --direct spatial --no-dct-decimate -t0 --slice-max-mbs 50 +OPT2 = --crf 26 -b4 -m5 -r2 --me hex --cqm jvt --nr 100 --psnr --no-mixed-refs --b-adapt 2 --slice-max-size 1500 +OPT3 = --crf 18 -b3 -m9 -r5 --me umh -t1 -A all --b-pyramid normal --direct auto --no-fast-pskip --no-mbtree +OPT4 = --crf 22 -b3 -m7 -r4 --me esa -t2 -A all --psy-rd 1.0:1.0 --slices 4 +OPT5 = --frames 50 --crf 24 -b3 -m10 -r3 --me tesa -t2 +OPT6 = --frames 50 -q0 -m9 -r2 --me hex -Aall +OPT7 = --frames 50 -q0 -m2 -r1 --me hex --no-cabac ifeq (,$(VIDS)) fprofiled: @echo 'usage: make fprofiled VIDS="infile1 infile2 ..."' @echo 'where infiles are anything that x264 understands,' - @echo 'i.e. YUV with resolution in the filename, or avisynth.' + @echo 'i.e. YUV with resolution in the filename, y4m, or avisynth.' else fprofiled: $(MAKE) clean - mv config.mak config.mak2 - sed -e 's/CFLAGS.*/& -fprofile-generate/; s/LDFLAGS.*/& -fprofile-generate/' config.mak2 > config.mak - $(MAKE) x264$(EXE) - $(foreach V, $(VIDS), $(foreach I, 0 1 2, ./x264$(EXE) $(OPT$I) $(V) --progress -o $(DEVNULL) ;)) + $(MAKE) x264$(EXE) CFLAGS="$(CFLAGS) $(PROF_GEN_CC)" LDFLAGS="$(LDFLAGS) $(PROF_GEN_LD)" + $(foreach V, $(VIDS), $(foreach I, 0 1 2 3 4 5 6 7, ./x264$(EXE) $(OPT$I) --threads 1 $(V) -o $(DEVNULL) ;)) rm -f $(SRC2:%.c=%.o) - sed -e 's/CFLAGS.*/& -fprofile-use/; s/LDFLAGS.*/& -fprofile-use/' config.mak2 > config.mak - $(MAKE) - rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) - mv config.mak2 config.mak + $(MAKE) CFLAGS="$(CFLAGS) $(PROF_USE_CC)" LDFLAGS="$(LDFLAGS) $(PROF_USE_LD)" + rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) *.dyn pgopti.dpi pgopti.dpi.lock endif clean: - rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(SONAME) *.a x264 x264.exe .depend TAGS - rm -f checkasm checkasm.exe tools/checkasm.o - rm -f tools/avc2avi tools/avc2avi.exe tools/avc2avi.o - rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) - - sed -e 's/ *-fprofile-\(generate\|use\)//g' config.mak > config.mak2 && mv config.mak2 config.mak - $(MAKE) -C gtk clean + rm -f $(OBJS) $(OBJASM) $(OBJCLI) $(OBJSO) $(SONAME) *.a *.lib *.exp *.pdb x264 x264.exe .depend TAGS + rm -f checkasm checkasm.exe $(OBJCHK) + rm -f $(SRC2:%.c=%.gcda) $(SRC2:%.c=%.gcno) *.dyn pgopti.dpi pgopti.dpi.lock distclean: clean - rm -f config.mak config.h x264.pc - $(MAKE) -C gtk distclean - -install: x264 $(SONAME) - install -d $(DESTDIR)$(bindir) $(DESTDIR)$(includedir) - install -d $(DESTDIR)$(libdir) $(DESTDIR)$(libdir)/pkgconfig - install -m 644 x264.h $(DESTDIR)$(includedir) - install -m 644 libx264.a $(DESTDIR)$(libdir) + rm -f config.mak x264_config.h config.h config.log x264.pc x264.def + +install-cli: cli + install -d $(DESTDIR)$(bindir) + install x264$(EXE) $(DESTDIR)$(bindir) + +install-lib-dev: + install -d $(DESTDIR)$(includedir) + install -d $(DESTDIR)$(libdir) + install -d $(DESTDIR)$(libdir)/pkgconfig + install -m 644 $(SRCPATH)/x264.h $(DESTDIR)$(includedir) + install -m 644 x264_config.h $(DESTDIR)$(includedir) install -m 644 x264.pc $(DESTDIR)$(libdir)/pkgconfig - install x264 $(DESTDIR)$(bindir) - ranlib $(DESTDIR)$(libdir)/libx264.a - $(if $(SONAME), ln -sf $(SONAME) $(DESTDIR)$(libdir)/libx264.so) - $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) -install-gtk: libx264gtk.a - $(MAKE) -C gtk install +install-lib-static: lib-static install-lib-dev + install -m 644 $(LIBX264) $(DESTDIR)$(libdir) + $(if $(RANLIB), $(RANLIB) $(DESTDIR)$(libdir)/$(LIBX264)) + +install-lib-shared: lib-shared install-lib-dev +ifneq ($(IMPLIBNAME),) + install -d $(DESTDIR)$(bindir) + install -m 755 $(SONAME) $(DESTDIR)$(bindir) + install -m 644 $(IMPLIBNAME) $(DESTDIR)$(libdir) +else ifneq ($(SONAME),) + ln -f -s $(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX) + install -m 755 $(SONAME) $(DESTDIR)$(libdir) +endif uninstall: - rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(libdir)/libx264.a - rm -f $(DESTDIR)$(bindir)/x264 $(DESTDIR)$(libdir)/pkgconfig/x264.pc - $(if $(SONAME), rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.so) - $(MAKE) -C gtk uninstall + rm -f $(DESTDIR)$(includedir)/x264.h $(DESTDIR)$(includedir)/x264_config.h $(DESTDIR)$(libdir)/libx264.a + rm -f $(DESTDIR)$(bindir)/x264$(EXE) $(DESTDIR)$(libdir)/pkgconfig/x264.pc +ifneq ($(IMPLIBNAME),) + rm -f $(DESTDIR)$(bindir)/$(SONAME) $(DESTDIR)$(libdir)/$(IMPLIBNAME) +else ifneq ($(SONAME),) + rm -f $(DESTDIR)$(libdir)/$(SONAME) $(DESTDIR)$(libdir)/libx264.$(SOSUFFIX) +endif etags: TAGS