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.

523 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_TTA_DECODER),yes)
  168. OBJS+= tta.o
  169. endif
  170. ifeq ($(CONFIG_TSCC_DECODER),yes)
  171. OBJS+= tscc.o
  172. endif
  173. ifeq ($(CONFIG_CSCD_DECODER),yes)
  174. OBJS+= cscd.o
  175. OBJS+= lzo.o
  176. endif
  177. ifeq ($(CONFIG_ULTI_DECODER),yes)
  178. OBJS+= ulti.o
  179. endif
  180. ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),)
  181. OBJS+= vc9.o
  182. endif
  183. ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
  184. OBJS+= vcr1.o
  185. endif
  186. ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
  187. OBJS+= vmdav.o
  188. endif
  189. ifeq ($(CONFIG_VORBIS_DECODER),yes)
  190. OBJS+= vorbis.o
  191. endif
  192. ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
  193. OBJS+= vp3.o
  194. endif
  195. ifeq ($(CONFIG_VQA_DECODER),yes)
  196. OBJS+= vqavideo.o
  197. endif
  198. ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
  199. OBJS+= wmadec.o
  200. endif
  201. ifeq ($(CONFIG_WNV1_DECODER),yes)
  202. OBJS+= wnv1.o
  203. endif
  204. ifeq ($(CONFIG_WS_SND1_DECODER),yes)
  205. OBJS+= ws-snd1.o
  206. endif
  207. ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
  208. OBJS+= xan.o
  209. endif
  210. ifeq ($(CONFIG_XL_DECODER),yes)
  211. OBJS+= xl.o
  212. endif
  213. ifeq ($(CONFIG_BMP_DECODER),yes)
  214. OBJS+= bmp.o
  215. endif
  216. ifeq ($(CONFIG_MMVIDEO_DECODER),yes)
  217. OBJS+= mmvideo.o
  218. endif
  219. ifeq ($(CONFIG_ZMBV_DECODER),yes)
  220. OBJS+= zmbv.o
  221. endif
  222. AMROBJS=
  223. ifeq ($(AMR_NB),yes)
  224. ifeq ($(AMR_NB_FIXED),yes)
  225. AMROBJS= amr.o
  226. AMREXTRALIBS+= amr/*.o
  227. AMRLIBS=amrlibs
  228. CLEANAMR=cleanamr
  229. else
  230. AMROBJS= amr.o
  231. OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
  232. CLEANAMR=cleanamrfloat
  233. endif
  234. endif
  235. ifeq ($(HAVE_PTHREADS),yes)
  236. OBJS+= pthread.o
  237. endif
  238. ifeq ($(HAVE_W32THREADS),yes)
  239. OBJS+= w32thread.o
  240. endif
  241. ifeq ($(HAVE_OS2THREADS),yes)
  242. OBJS+= os2thread.o
  243. endif
  244. ifeq ($(HAVE_BEOSTHREADS),yes)
  245. OBJS+= beosthread.o
  246. endif
  247. ifeq ($(AMR_WB),yes)
  248. AMROBJS= amr.o
  249. OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \
  250. amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \
  251. amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \
  252. amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \
  253. amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \
  254. amrwb_float/enc_util.o amrwb_float/if_rom.o
  255. endif
  256. OBJS+= $(AMROBJS)
  257. CLEANAMRWB=cleanamrwbfloat
  258. ASM_OBJS=
  259. ifeq ($(HAVE_XVMC_ACCEL),yes)
  260. OBJS+= xvmcvideo.o
  261. endif
  262. # currently using liba52 for ac3 decoding
  263. ifeq ($(CONFIG_AC3),yes)
  264. OBJS+= a52dec.o
  265. # using builtin liba52 or runtime linked liba52.so.0
  266. ifneq ($(CONFIG_A52BIN),yes)
  267. OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
  268. liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
  269. endif
  270. endif
  271. EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF)
  272. # currently using libdts for dts decoding
  273. ifeq ($(CONFIG_DTS),yes)
  274. OBJS+= dtsdec.o
  275. CFLAGS += $(DTS_INC)
  276. endif
  277. ifeq ($(CONFIG_FAAD),yes)
  278. OBJS+= faad.o
  279. endif
  280. ifeq ($(CONFIG_FAAC),yes)
  281. OBJS+= faac.o
  282. endif
  283. ifeq ($(CONFIG_XVID),yes)
  284. OBJS+= xvidff.o
  285. OBJS+= xvid_rc.o
  286. endif
  287. ifeq ($(CONFIG_X264),yes)
  288. OBJS+= x264.o
  289. endif
  290. ifeq ($(CONFIG_MP3LAME),yes)
  291. OBJS += mp3lameaudio.o
  292. endif
  293. ifeq ($(CONFIG_LIBOGG),yes)
  294. ifeq ($(CONFIG_LIBVORBIS),yes)
  295. OBJS += oggvorbis.o
  296. endif
  297. ifeq ($(CONFIG_LIBTHEORA), yes)
  298. OBJS += oggtheora.o
  299. endif
  300. endif
  301. ifeq ($(CONFIG_LIBGSM),yes)
  302. OBJS += libgsm.o
  303. endif
  304. ifeq ($(TARGET_GPROF),yes)
  305. CFLAGS+=-p
  306. LDFLAGS+=-p
  307. endif
  308. # i386 mmx specific stuff
  309. ifeq ($(TARGET_MMX),yes)
  310. OBJS += i386/fdct_mmx.o i386/cputest.o \
  311. i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
  312. i386/idct_mmx.o i386/motion_est_mmx.o \
  313. i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
  314. i386/vp3dsp_sse2.o
  315. ifeq ($(CONFIG_GPL),yes)
  316. OBJS += i386/idct_mmx_xvid.o
  317. endif
  318. ifdef TARGET_BUILTIN_VECTOR
  319. i386/fft_sse.o: CFLAGS+= -msse
  320. depend: CFLAGS+= -msse
  321. endif
  322. endif
  323. # armv4l specific stuff
  324. ifeq ($(TARGET_ARCH_ARMV4L),yes)
  325. ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
  326. OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
  327. ifeq ($(TARGET_IWMMXT),yes)
  328. OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
  329. endif
  330. endif
  331. # sun mediaLib specific stuff
  332. # currently only works when libavcodec is used in mplayer
  333. ifeq ($(HAVE_MLIB),yes)
  334. OBJS += mlib/dsputil_mlib.o
  335. CFLAGS += $(MLIB_INC)
  336. endif
  337. # Intel IPP specific stuff
  338. # currently only works when libavcodec is used in mplayer
  339. ifeq ($(HAVE_IPP),yes)
  340. CFLAGS += $(IPP_INC)
  341. endif
  342. # alpha specific stuff
  343. ifeq ($(TARGET_ARCH_ALPHA),yes)
  344. OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
  345. alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
  346. ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
  347. CFLAGS += -fforce-addr
  348. endif
  349. ifeq ($(TARGET_ARCH_POWERPC),yes)
  350. OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
  351. endif
  352. ifeq ($(TARGET_MMI),yes)
  353. OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
  354. endif
  355. ifeq ($(TARGET_ALTIVEC),yes)
  356. OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
  357. ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
  358. ppc/dsputil_h264_altivec.o
  359. endif
  360. ifeq ($(TARGET_ARCH_SH4),yes)
  361. OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
  362. endif
  363. ifeq ($(TARGET_ARCH_SPARC),yes)
  364. OBJS+=sparc/dsputil_vis.o
  365. sparc/%.o: sparc/%.c
  366. $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
  367. endif
  368. ifeq ($(TARGET_ARCH_SPARC64),yes)
  369. CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
  370. endif
  371. SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
  372. OBJS := $(OBJS) $(ASM_OBJS)
  373. NAME=avcodec
  374. LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
  375. ifeq ($(BUILD_SHARED),yes)
  376. LIBVERSION=$(LAVCVERSION)
  377. LIBMAJOR=$(LAVCMAJOR)
  378. endif
  379. TESTS= imgresample-test dct-test motion-test fft-test
  380. all: $(LIB) $(SLIBNAME)
  381. amrlibs:
  382. $(MAKE) -C amr spclib fipoplib
  383. tests: apiexample cpuid_test $(TESTS)
  384. $(LIB): $(OBJS) $(AMRLIBS)
  385. rm -f $@
  386. $(AR) rc $@ $(OBJS) $(AMREXTRALIBS)
  387. $(RANLIB) $@
  388. $(SLIBNAME): $(OBJS)
  389. $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS)
  390. ifeq ($(CONFIG_WIN32),yes)
  391. -lib /machine:i386 /def:$(@:.dll=.def)
  392. endif
  393. dsputil.o: dsputil.c dsputil.h
  394. %.o: %.c
  395. $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
  396. %.o: %.S
  397. $(CC) $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $<
  398. depend: $(SRCS)
  399. $(CC) -MM $(CFLAGS) $^ 1>.depend
  400. dep: depend
  401. clean: $(CLEANAMR)
  402. rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll \
  403. *.dll.a *.def *.exp \
  404. i386/*.o i386/*~ \
  405. armv4l/*.o armv4l/*~ \
  406. mlib/*.o mlib/*~ \
  407. alpha/*.o alpha/*~ \
  408. ppc/*.o ppc/*~ \
  409. ps2/*.o ps2/*~ \
  410. sh4/*.o sh4/*~ \
  411. sparc/*.o sparc/*~ \
  412. liba52/*.o liba52/*~ \
  413. apiexample $(TESTS)
  414. distclean: clean
  415. rm -f .depend
  416. cleanamr:
  417. $(MAKE) -C amr clean
  418. cleanamrfloat:
  419. rm -f amr_float/*.o
  420. cleanamrwbfloat:
  421. $(MAKE) -C amrwb_float -f makefile.gcc clean
  422. # api example program
  423. apiexample: apiexample.c $(LIB)
  424. $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) -lm
  425. # cpuid test
  426. cpuid_test: i386/cputest.c
  427. $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
  428. # testing progs
  429. imgresample-test: imgresample.c
  430. $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
  431. dct-test: dct-test.o fdctref.o $(LIB)
  432. $(CC) -o $@ $^ -lm $(LIBAVUTIL)
  433. motion-test: motion_test.o $(LIB)
  434. $(CC) -o $@ $^ -lm
  435. fft-test: fft-test.o $(LIB)
  436. $(CC) -o $@ $^ $(LIBAVUTIL) -lm
  437. install-lib-shared: $(SLIBNAME)
  438. ifeq ($(CONFIG_WIN32),yes)
  439. install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
  440. else
  441. install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
  442. $(libdir)/$(SLIBNAME_WITH_VERSION)
  443. ln -sf $(SLIBNAME_WITH_VERSION) \
  444. $(libdir)/$(SLIBNAME_WITH_MAJOR)
  445. ln -sf $(SLIBNAME_WITH_VERSION) \
  446. $(libdir)/$(SLIBNAME)
  447. endif
  448. install-lib-static: $(LIB)
  449. install -m 644 $(LIB) "$(libdir)"
  450. install-headers:
  451. install -m 644 avcodec.h dsputil.h "$(incdir)"
  452. install -m 644 $(SRC_PATH)/libavcodec.pc "$(libdir)/pkgconfig"
  453. #
  454. # include dependency files if they exist
  455. #
  456. ifneq ($(wildcard .depend),)
  457. include .depend
  458. endif