Makefile
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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