You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

539 lines
12KB

  1. #
  2. # libavcodec Makefile
  3. # (c) 2000-2005 Fabrice Bellard
  4. #
  5. include ../config.mak
  6. VPATH=$(SRC_PATH)/libavcodec
  7. # NOTE: -I.. is needed to include config.h
  8. CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS)
  9. #FIXME: This should be in configure/config.mak
  10. ifeq ($(CONFIG_WIN32),yes)
  11. LDFLAGS=-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a)
  12. endif
  13. OBJS= bitstream.o utils.o mem.o allcodecs.o \
  14. mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\
  15. mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \
  16. motion_est.o imgconvert.o imgresample.o \
  17. mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \
  18. ratecontrol.o adpcm.o eval.o error_resilience.o \
  19. fft.o mdct.o raw.o golomb.o cabac.o\
  20. dpcm.o adx.o faandct.o parser.o g726.o \
  21. vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \
  22. opt.o
  23. ifeq ($(CONFIG_AASC_DECODER),yes)
  24. OBJS+= aasc.o
  25. endif
  26. ifeq ($(CONFIG_ALAC_DECODER),yes)
  27. OBJS+= alac.o
  28. endif
  29. ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),)
  30. OBJS+= asv1.o
  31. endif
  32. ifeq ($(CONFIG_CINEPAK_DECODER),yes)
  33. OBJS+= cinepak.o
  34. endif
  35. ifeq ($(CONFIG_COOK_DECODER),yes)
  36. OBJS+= cook.o
  37. endif
  38. ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),)
  39. OBJS+= cljr.o
  40. endif
  41. ifeq ($(CONFIG_CYUV_DECODER),yes)
  42. OBJS+= cyuv.o
  43. endif
  44. ifeq ($(CONFIG_DVBSUB_DECODER),yes)
  45. OBJS+= dvbsubdec.o
  46. endif
  47. ifeq ($(CONFIG_DVBSUB_ENCODER),yes)
  48. OBJS+= dvbsub.o
  49. endif
  50. ifeq ($(CONFIG_DVDSUB_DECODER),yes)
  51. OBJS+= dvdsub.o
  52. endif
  53. ifeq ($(CONFIG_DVDSUB_ENCODER),yes)
  54. OBJS+= dvdsubenc.o
  55. endif
  56. ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),)
  57. OBJS+= dv.o
  58. endif
  59. ifeq ($(CONFIG_EIGHTBPS_DECODER),yes)
  60. OBJS+= 8bps.o
  61. endif
  62. ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),)
  63. OBJS+= ffv1.o
  64. endif
  65. ifeq ($(CONFIG_FLAC_DECODER),yes)
  66. OBJS+= flac.o
  67. endif
  68. ifeq ($(CONFIG_FLIC_DECODER),yes)
  69. OBJS+= flicvideo.o
  70. endif
  71. ifeq ($(CONFIG_FOURXM_DECODER),yes)
  72. OBJS+= 4xm.o
  73. endif
  74. ifeq ($(CONFIG_FRAPS_DECODER),yes)
  75. OBJS+= fraps.o
  76. endif
  77. ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),)
  78. OBJS+= h261.o
  79. endif
  80. ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),)
  81. OBJS+= h264.o
  82. endif
  83. ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),)
  84. OBJS+= huffyuv.o
  85. endif
  86. ifeq ($(CONFIG_IDCIN_DECODER),yes)
  87. OBJS+= idcinvideo.o
  88. endif
  89. ifeq ($(CONFIG_INDEO2_DECODER),yes)
  90. OBJS+= indeo2.o
  91. endif
  92. ifeq ($(CONFIG_INDEO3_DECODER),yes)
  93. OBJS+= indeo3.o
  94. endif
  95. ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes)
  96. OBJS+= interplayvideo.o
  97. endif
  98. ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
  99. OBJS+= lcl.o
  100. endif
  101. ifeq ($(CONFIG_LOCO_DECODER),yes)
  102. OBJS+= loco.o
  103. endif
  104. ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),)
  105. OBJS+= mace.o
  106. endif
  107. ifeq ($(CONFIG_MSRLE_DECODER),yes)
  108. OBJS+= msrle.o
  109. endif
  110. ifeq ($(CONFIG_MSVIDEO1_DECODER),yes)
  111. OBJS+= msvideo1.o
  112. endif
  113. ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),)
  114. OBJS+= png.o
  115. endif
  116. ifeq ($(CONFIG_QDM2_DECODER),yes)
  117. OBJS+= qdm2.o
  118. endif
  119. ifeq ($(CONFIG_QDRAW_DECODER),yes)
  120. OBJS+= qdrw.o
  121. endif
  122. ifeq ($(CONFIG_QPEG_DECODER),yes)
  123. OBJS+= qpeg.o
  124. endif
  125. ifeq ($(CONFIG_QTRLE_DECODER),yes)
  126. OBJS+= qtrle.o
  127. endif
  128. ifeq ($(CONFIG_RA_144_DECODER),yes)
  129. OBJS+= ra144.o
  130. endif
  131. ifeq ($(CONFIG_RA_288_DECODER),yes)
  132. OBJS+= ra288.o
  133. endif
  134. ifeq ($(CONFIG_ROQ_DECODER),yes)
  135. OBJS+= roqvideo.o
  136. endif
  137. ifeq ($(CONFIG_RPZA_DECODER),yes)
  138. OBJS+= rpza.o
  139. endif
  140. ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),)
  141. OBJS+= rv10.o
  142. endif
  143. ifeq ($(CONFIG_SHORTEN_DECODER),yes)
  144. OBJS+= shorten.o
  145. endif
  146. ifeq ($(CONFIG_SMC_DECODER),yes)
  147. OBJS+= smc.o
  148. endif
  149. ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),)
  150. OBJS+= snow.o
  151. endif
  152. ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),)
  153. OBJS+= sonic.o
  154. endif
  155. ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),)
  156. OBJS+= svq1.o
  157. endif
  158. ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes)
  159. OBJS+= truemotion1.o
  160. endif
  161. ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes)
  162. OBJS+= truemotion2.o
  163. endif
  164. ifeq ($(CONFIG_TRUESPEECH_DECODER),yes)
  165. OBJS+= truespeech.o
  166. endif
  167. ifeq ($(CONFIG_TSCC_DECODER),yes)
  168. OBJS+= tscc.o
  169. endif
  170. ifeq ($(CONFIG_CSCD_DECODER),yes)
  171. OBJS+= cscd.o
  172. OBJS+= lzo.o
  173. endif
  174. ifeq ($(CONFIG_ULTI_DECODER),yes)
  175. OBJS+= ulti.o
  176. endif
  177. ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),)
  178. OBJS+= vc9.o
  179. endif
  180. ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
  181. OBJS+= vcr1.o
  182. endif
  183. ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
  184. OBJS+= vmdav.o
  185. endif
  186. ifeq ($(CONFIG_VORBIS_DECODER),yes)
  187. OBJS+= vorbis.o
  188. endif
  189. ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
  190. OBJS+= vp3.o
  191. endif
  192. ifeq ($(CONFIG_VQA_DECODER),yes)
  193. OBJS+= vqavideo.o
  194. endif
  195. ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
  196. OBJS+= wmadec.o
  197. endif
  198. ifeq ($(CONFIG_WNV1_DECODER),yes)
  199. OBJS+= wnv1.o
  200. endif
  201. ifeq ($(CONFIG_WS_SND1_DECODER),yes)
  202. OBJS+= ws-snd1.o
  203. endif
  204. ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
  205. OBJS+= xan.o
  206. endif
  207. ifeq ($(CONFIG_XL_DECODER),yes)
  208. OBJS+= xl.o
  209. endif
  210. ifeq ($(CONFIG_BMP_DECODER),yes)
  211. OBJS+= bmp.o
  212. endif
  213. AMROBJS=
  214. ifeq ($(AMR_NB),yes)
  215. ifeq ($(AMR_NB_FIXED),yes)
  216. AMROBJS= amr.o
  217. AMREXTRALIBS+= amr/*.o
  218. AMRLIBS=amrlibs
  219. CLEANAMR=cleanamr
  220. else
  221. AMROBJS= amr.o
  222. OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
  223. CLEANAMR=cleanamrfloat
  224. endif
  225. endif
  226. ifeq ($(HAVE_PTHREADS),yes)
  227. OBJS+= pthread.o
  228. endif
  229. ifeq ($(HAVE_W32THREADS),yes)
  230. OBJS+= w32thread.o
  231. endif
  232. ifeq ($(HAVE_BEOSTHREADS),yes)
  233. OBJS+= beosthread.o
  234. endif
  235. ifeq ($(AMR_WB),yes)
  236. AMROBJS= amr.o
  237. OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \
  238. amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \
  239. amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \
  240. amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \
  241. amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \
  242. amrwb_float/enc_util.o amrwb_float/if_rom.o
  243. endif
  244. OBJS+= $(AMROBJS)
  245. CLEANAMRWB=cleanamrwbfloat
  246. ASM_OBJS=
  247. ifeq ($(HAVE_XVMC_ACCEL),yes)
  248. OBJS+= xvmcvideo.o
  249. endif
  250. # currently using liba52 for ac3 decoding
  251. ifeq ($(CONFIG_AC3),yes)
  252. OBJS+= a52dec.o
  253. # using builtin liba52 or runtime linked liba52.so.0
  254. ifneq ($(CONFIG_A52BIN),yes)
  255. OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
  256. liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
  257. endif
  258. endif
  259. EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF)
  260. # currently using libdts for dts decoding
  261. ifeq ($(CONFIG_DTS),yes)
  262. OBJS+= dtsdec.o
  263. CFLAGS += $(DTS_INC)
  264. endif
  265. ifeq ($(CONFIG_FAAD),yes)
  266. OBJS+= faad.o
  267. endif
  268. ifeq ($(CONFIG_FAAC),yes)
  269. OBJS+= faac.o
  270. endif
  271. ifeq ($(CONFIG_XVID),yes)
  272. OBJS+= xvidff.o
  273. OBJS+= xvid_rc.o
  274. endif
  275. ifeq ($(CONFIG_X264),yes)
  276. OBJS+= x264.o
  277. endif
  278. ifeq ($(CONFIG_PP),yes)
  279. ifeq ($(BUILD_SHARED),yes)
  280. EXTRALIBS += -Llibpostproc -lpostproc$(BUILDSUF)
  281. else
  282. # LIBS += libpostproc/libpostproc.a ... should be fixed
  283. OBJS += libpostproc/postprocess.o
  284. endif
  285. endif
  286. ifeq ($(CONFIG_MP3LAME),yes)
  287. OBJS += mp3lameaudio.o
  288. endif
  289. ifeq ($(CONFIG_LIBOGG),yes)
  290. ifeq ($(CONFIG_LIBVORBIS),yes)
  291. OBJS += oggvorbis.o
  292. endif
  293. ifeq ($(CONFIG_LIBTHEORA), yes)
  294. OBJS += oggtheora.o
  295. endif
  296. endif
  297. ifeq ($(CONFIG_LIBGSM),yes)
  298. OBJS += libgsm.o
  299. endif
  300. ifeq ($(TARGET_GPROF),yes)
  301. CFLAGS+=-p
  302. LDFLAGS+=-p
  303. endif
  304. # i386 mmx specific stuff
  305. ifeq ($(TARGET_MMX),yes)
  306. OBJS += i386/fdct_mmx.o i386/cputest.o \
  307. i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
  308. i386/idct_mmx.o i386/motion_est_mmx.o \
  309. i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
  310. i386/vp3dsp_sse2.o
  311. ifeq ($(CONFIG_GPL),yes)
  312. OBJS += i386/idct_mmx_xvid.o
  313. endif
  314. ifdef TARGET_BUILTIN_VECTOR
  315. i386/fft_sse.o: CFLAGS+= -msse
  316. depend: CFLAGS+= -msse
  317. endif
  318. endif
  319. # armv4l specific stuff
  320. ifeq ($(TARGET_ARCH_ARMV4L),yes)
  321. ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
  322. OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
  323. ifeq ($(TARGET_IWMMXT),yes)
  324. OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
  325. endif
  326. endif
  327. # sun mediaLib specific stuff
  328. # currently only works when libavcodec is used in mplayer
  329. ifeq ($(HAVE_MLIB),yes)
  330. OBJS += mlib/dsputil_mlib.o
  331. CFLAGS += $(MLIB_INC)
  332. endif
  333. # Intel IPP specific stuff
  334. # currently only works when libavcodec is used in mplayer
  335. ifeq ($(HAVE_IPP),yes)
  336. CFLAGS += $(IPP_INC)
  337. endif
  338. # alpha specific stuff
  339. ifeq ($(TARGET_ARCH_ALPHA),yes)
  340. OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
  341. alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
  342. ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
  343. CFLAGS += -fforce-addr
  344. endif
  345. ifeq ($(TARGET_ARCH_POWERPC),yes)
  346. OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
  347. endif
  348. ifeq ($(TARGET_MMI),yes)
  349. OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
  350. endif
  351. ifeq ($(TARGET_ALTIVEC),yes)
  352. OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
  353. ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
  354. ppc/dsputil_h264_altivec.o
  355. endif
  356. ifeq ($(TARGET_ARCH_SH4),yes)
  357. OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
  358. endif
  359. ifeq ($(TARGET_ARCH_SPARC),yes)
  360. OBJS+=sparc/dsputil_vis.o
  361. sparc/%.o: sparc/%.c
  362. $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
  363. endif
  364. ifeq ($(TARGET_ARCH_SPARC64),yes)
  365. CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
  366. endif
  367. SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
  368. OBJS := $(OBJS) $(ASM_OBJS)
  369. NAME=avcodec
  370. LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
  371. ifeq ($(BUILD_SHARED),yes)
  372. LIBVERSION=$(LAVCVERSION)
  373. LIBMAJOR=$(LAVCMAJOR)
  374. endif
  375. TESTS= imgresample-test dct-test motion-test fft-test
  376. all: $(LIB) $(SLIBNAME)
  377. amrlibs:
  378. $(MAKE) -C amr spclib fipoplib
  379. tests: apiexample cpuid_test $(TESTS)
  380. $(LIB): $(OBJS) $(AMRLIBS)
  381. rm -f $@
  382. $(AR) rc $@ $(OBJS) $(AMREXTRALIBS)
  383. $(RANLIB) $@
  384. $(SLIBNAME): $(OBJS)
  385. ifeq ($(CONFIG_PP),yes)
  386. $(MAKE) -C libpostproc
  387. endif
  388. $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
  389. ifeq ($(CONFIG_WIN32),yes)
  390. -lib /machine:i386 /def:$(@:.dll=.def)
  391. endif
  392. dsputil.o: dsputil.c dsputil.h
  393. libpostproc/libpostproc.a:
  394. $(MAKE) -C libpostproc
  395. %.o: %.c
  396. $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
  397. %.o: %.S
  398. $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
  399. depend: $(SRCS)
  400. $(CC) -MM $(CFLAGS) $^ 1>.depend
  401. dep: depend
  402. clean: $(CLEANAMR)
  403. rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll \
  404. *.dll.a *.def *.exp \
  405. i386/*.o i386/*~ \
  406. armv4l/*.o armv4l/*~ \
  407. mlib/*.o mlib/*~ \
  408. alpha/*.o alpha/*~ \
  409. ppc/*.o ppc/*~ \
  410. ps2/*.o ps2/*~ \
  411. sh4/*.o sh4/*~ \
  412. sparc/*.o sparc/*~ \
  413. liba52/*.o liba52/*~ \
  414. apiexample $(TESTS)
  415. $(MAKE) -C libpostproc clean
  416. distclean: clean
  417. rm -f .depend
  418. $(MAKE) -C libpostproc distclean
  419. cleanamr:
  420. $(MAKE) -C amr clean
  421. cleanamrfloat:
  422. rm -f amr_float/*.o
  423. cleanamrwbfloat:
  424. $(MAKE) -C amrwb_float -f makefile.gcc clean
  425. # api example program
  426. apiexample: apiexample.c $(LIB)
  427. $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) -lm
  428. # cpuid test
  429. cpuid_test: i386/cputest.c
  430. $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
  431. # testing progs
  432. imgresample-test: imgresample.c
  433. $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
  434. dct-test: dct-test.o fdctref.o $(LIB)
  435. $(CC) -o $@ $^ -lm $(LIBAVUTIL)
  436. motion-test: motion_test.o $(LIB)
  437. $(CC) -o $@ $^ -lm
  438. fft-test: fft-test.o $(LIB)
  439. $(CC) -o $@ $^ $(LIBAVUTIL) -lm
  440. ifeq ($(BUILD_SHARED),yes)
  441. install: all install-headers
  442. ifeq ($(CONFIG_WIN32),yes)
  443. install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
  444. else
  445. install -d $(libdir)
  446. install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
  447. $(libdir)/$(SLIBNAME_WITH_VERSION)
  448. ln -sf $(SLIBNAME_WITH_VERSION) \
  449. $(libdir)/$(SLIBNAME_WITH_MAJOR)
  450. ln -sf $(SLIBNAME_WITH_VERSION) \
  451. $(libdir)/$(SLIBNAME)
  452. $(LDCONFIG) || true
  453. endif
  454. ifeq ($(CONFIG_PP),yes)
  455. $(MAKE) -C libpostproc $@
  456. endif
  457. else
  458. install:
  459. endif
  460. installlib: all install-headers
  461. install -m 644 $(LIB) "$(libdir)"
  462. install-headers:
  463. mkdir -p "$(prefix)/include/ffmpeg"
  464. install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \
  465. "$(prefix)/include/ffmpeg"
  466. install -m 644 $(SRC_PATH)/libavcodec/dsputil.h \
  467. "$(prefix)/include/ffmpeg"
  468. install -d "$(libdir)/pkgconfig"
  469. install -m 644 ../libavcodec.pc "$(libdir)/pkgconfig"
  470. #
  471. # include dependency files if they exist
  472. #
  473. ifneq ($(wildcard .depend),)
  474. include .depend
  475. endif