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.

469 lines
11KB

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