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.

476 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_FLAC_ENCODER),yes)
  68. OBJS+= flacenc.o
  69. endif
  70. ifeq ($(CONFIG_FLIC_DECODER),yes)
  71. OBJS+= flicvideo.o
  72. endif
  73. ifeq ($(CONFIG_FOURXM_DECODER),yes)
  74. OBJS+= 4xm.o
  75. endif
  76. ifeq ($(CONFIG_FRAPS_DECODER),yes)
  77. OBJS+= fraps.o
  78. endif
  79. ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),)
  80. OBJS+= h261.o
  81. endif
  82. ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),)
  83. OBJS+= h264.o
  84. endif
  85. ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),)
  86. OBJS+= huffyuv.o
  87. endif
  88. ifeq ($(CONFIG_IDCIN_DECODER),yes)
  89. OBJS+= idcinvideo.o
  90. endif
  91. ifeq ($(CONFIG_INDEO2_DECODER),yes)
  92. OBJS+= indeo2.o
  93. endif
  94. ifeq ($(CONFIG_INDEO3_DECODER),yes)
  95. OBJS+= indeo3.o
  96. endif
  97. ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes)
  98. OBJS+= interplayvideo.o
  99. endif
  100. ifeq ($(CONFIG_KMVC_DECODER),yes)
  101. OBJS+= kmvc.o
  102. endif
  103. ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),)
  104. OBJS+= lcl.o
  105. endif
  106. ifeq ($(CONFIG_LOCO_DECODER),yes)
  107. OBJS+= loco.o
  108. endif
  109. ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),)
  110. OBJS+= mace.o
  111. endif
  112. ifeq ($(CONFIG_MSRLE_DECODER),yes)
  113. OBJS+= msrle.o
  114. endif
  115. ifeq ($(CONFIG_MSVIDEO1_DECODER),yes)
  116. OBJS+= msvideo1.o
  117. endif
  118. ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),)
  119. OBJS+= png.o
  120. endif
  121. ifeq ($(CONFIG_QDM2_DECODER),yes)
  122. OBJS+= qdm2.o
  123. endif
  124. ifeq ($(CONFIG_QDRAW_DECODER),yes)
  125. OBJS+= qdrw.o
  126. endif
  127. ifeq ($(CONFIG_QPEG_DECODER),yes)
  128. OBJS+= qpeg.o
  129. endif
  130. ifeq ($(CONFIG_QTRLE_DECODER),yes)
  131. OBJS+= qtrle.o
  132. endif
  133. ifeq ($(CONFIG_RA_144_DECODER),yes)
  134. OBJS+= ra144.o
  135. endif
  136. ifeq ($(CONFIG_RA_288_DECODER),yes)
  137. OBJS+= ra288.o
  138. endif
  139. ifeq ($(CONFIG_ROQ_DECODER),yes)
  140. OBJS+= roqvideo.o
  141. endif
  142. ifeq ($(CONFIG_RPZA_DECODER),yes)
  143. OBJS+= rpza.o
  144. endif
  145. ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),)
  146. OBJS+= rv10.o
  147. endif
  148. ifeq ($(CONFIG_SHORTEN_DECODER),yes)
  149. OBJS+= shorten.o
  150. endif
  151. ifneq ($(CONFIG_SMACKER_DECODER)$(CONFIG_SMACKAUD_DECODER),)
  152. OBJS+= smacker.o
  153. endif
  154. ifeq ($(CONFIG_SMC_DECODER),yes)
  155. OBJS+= smc.o
  156. endif
  157. ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),)
  158. OBJS+= snow.o
  159. endif
  160. ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),)
  161. OBJS+= sonic.o
  162. endif
  163. ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),)
  164. OBJS+= svq1.o
  165. endif
  166. ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes)
  167. OBJS+= truemotion1.o
  168. endif
  169. ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes)
  170. OBJS+= truemotion2.o
  171. endif
  172. ifeq ($(CONFIG_TRUESPEECH_DECODER),yes)
  173. OBJS+= truespeech.o
  174. endif
  175. ifeq ($(CONFIG_TTA_DECODER),yes)
  176. OBJS+= tta.o
  177. endif
  178. ifeq ($(CONFIG_TSCC_DECODER),yes)
  179. OBJS+= tscc.o
  180. endif
  181. ifeq ($(CONFIG_CSCD_DECODER),yes)
  182. OBJS+= cscd.o
  183. OBJS+= lzo.o
  184. endif
  185. ifeq ($(CONFIG_NUV_DECODER),yes)
  186. OBJS+= nuv.o
  187. OBJS+= rtjpeg.o
  188. OBJS+= lzo.o
  189. endif
  190. ifeq ($(CONFIG_ULTI_DECODER),yes)
  191. OBJS+= ulti.o
  192. endif
  193. ifneq ($(CONFIG_VC1_DECODER)$(CONFIG_WMV3_DECODER),)
  194. OBJS+= vc1.o
  195. endif
  196. ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),)
  197. OBJS+= vcr1.o
  198. endif
  199. ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),)
  200. OBJS+= vmdav.o
  201. endif
  202. ifeq ($(CONFIG_VORBIS_DECODER),yes)
  203. OBJS+= vorbis.o
  204. endif
  205. ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),)
  206. OBJS+= vp3.o
  207. endif
  208. ifeq ($(CONFIG_VQA_DECODER),yes)
  209. OBJS+= vqavideo.o
  210. endif
  211. ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),)
  212. OBJS+= wmadec.o
  213. endif
  214. ifeq ($(CONFIG_WNV1_DECODER),yes)
  215. OBJS+= wnv1.o
  216. endif
  217. ifeq ($(CONFIG_WS_SND1_DECODER),yes)
  218. OBJS+= ws-snd1.o
  219. endif
  220. ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),)
  221. OBJS+= xan.o
  222. endif
  223. ifeq ($(CONFIG_XL_DECODER),yes)
  224. OBJS+= xl.o
  225. endif
  226. ifeq ($(CONFIG_BMP_DECODER),yes)
  227. OBJS+= bmp.o
  228. endif
  229. ifeq ($(CONFIG_MMVIDEO_DECODER),yes)
  230. OBJS+= mmvideo.o
  231. endif
  232. ifeq ($(CONFIG_ZMBV_DECODER),yes)
  233. OBJS+= zmbv.o
  234. endif
  235. ifeq ($(CONFIG_FLASHSV_DECODER),yes)
  236. OBJS+= flashsv.o
  237. endif
  238. ifeq ($(AMR),yes)
  239. OBJS+= amr.o
  240. endif
  241. ifeq ($(AMR_NB),yes)
  242. OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o
  243. endif
  244. ifeq ($(AMR_NB_FIXED),yes)
  245. EXTRAOBJS += amr/*.o
  246. EXTRADEPS=amrlibs
  247. endif
  248. ifeq ($(AMR_WB),yes)
  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. ifeq ($(HAVE_PTHREADS),yes)
  257. OBJS+= pthread.o
  258. endif
  259. ifeq ($(HAVE_W32THREADS),yes)
  260. OBJS+= w32thread.o
  261. endif
  262. ifeq ($(HAVE_OS2THREADS),yes)
  263. OBJS+= os2thread.o
  264. endif
  265. ifeq ($(HAVE_BEOSTHREADS),yes)
  266. OBJS+= beosthread.o
  267. endif
  268. ASM_OBJS=
  269. ifeq ($(HAVE_XVMC_ACCEL),yes)
  270. OBJS+= xvmcvideo.o
  271. endif
  272. # currently using liba52 for ac3 decoding
  273. ifeq ($(CONFIG_AC3),yes)
  274. OBJS+= a52dec.o
  275. # using builtin liba52 or runtime linked liba52.so.0
  276. ifneq ($(CONFIG_A52BIN),yes)
  277. OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \
  278. liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.o
  279. endif
  280. endif
  281. EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
  282. # currently using libdts for dts decoding
  283. ifeq ($(CONFIG_DTS),yes)
  284. OBJS+= dtsdec.o
  285. CFLAGS += $(DTS_INC)
  286. endif
  287. ifeq ($(CONFIG_FAAD),yes)
  288. OBJS+= faad.o
  289. endif
  290. ifeq ($(CONFIG_FAAC),yes)
  291. OBJS+= faac.o
  292. endif
  293. ifeq ($(CONFIG_XVID),yes)
  294. OBJS+= xvidff.o
  295. OBJS+= xvid_rc.o
  296. endif
  297. ifeq ($(CONFIG_X264),yes)
  298. OBJS+= x264.o
  299. endif
  300. ifeq ($(CONFIG_MP3LAME),yes)
  301. OBJS += mp3lameaudio.o
  302. endif
  303. ifeq ($(CONFIG_LIBOGG),yes)
  304. ifeq ($(CONFIG_LIBVORBIS),yes)
  305. OBJS += oggvorbis.o
  306. endif
  307. ifeq ($(CONFIG_LIBTHEORA), yes)
  308. OBJS += oggtheora.o
  309. endif
  310. endif
  311. ifeq ($(CONFIG_LIBGSM),yes)
  312. OBJS += libgsm.o
  313. endif
  314. # i386 mmx specific stuff
  315. ifeq ($(TARGET_MMX),yes)
  316. OBJS += i386/fdct_mmx.o i386/cputest.o \
  317. i386/dsputil_mmx.o i386/mpegvideo_mmx.o \
  318. i386/idct_mmx.o i386/motion_est_mmx.o \
  319. i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \
  320. i386/vp3dsp_sse2.o i386/fft_3dn.o i386/fft_3dn2.o i386/snowdsp_mmx.o
  321. ifeq ($(CONFIG_GPL),yes)
  322. OBJS += i386/idct_mmx_xvid.o
  323. endif
  324. ifeq ($(TARGET_BUILTIN_VECTOR),yes)
  325. i386/fft_sse.o: CFLAGS+= -msse
  326. depend: CFLAGS+= -msse
  327. endif
  328. ifeq ($(TARGET_BUILTIN_3DNOW),yes)
  329. i386/fft_3dn.o: CFLAGS+= -m3dnow
  330. ifeq ($(TARGET_ARCH_X86),yes)
  331. i386/fft_3dn2.o: CFLAGS+= -march=athlon
  332. endif
  333. ifeq ($(TARGET_ARCH_X86_64),yes)
  334. i386/fft_3dn2.o: CFLAGS+= -march=k8
  335. endif
  336. endif
  337. endif
  338. # armv4l specific stuff
  339. ifeq ($(TARGET_ARCH_ARMV4L),yes)
  340. ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o
  341. OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o
  342. ifeq ($(TARGET_IWMMXT),yes)
  343. OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o
  344. endif
  345. endif
  346. # sun mediaLib specific stuff
  347. # currently only works when libavcodec is used in mplayer
  348. ifeq ($(HAVE_MLIB),yes)
  349. OBJS += mlib/dsputil_mlib.o
  350. CFLAGS += $(MLIB_INC)
  351. endif
  352. # Intel IPP specific stuff
  353. # currently only works when libavcodec is used in mplayer
  354. ifeq ($(HAVE_IPP),yes)
  355. CFLAGS += $(IPP_INC)
  356. endif
  357. # alpha specific stuff
  358. ifeq ($(TARGET_ARCH_ALPHA),yes)
  359. OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
  360. alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
  361. ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
  362. CFLAGS += -fforce-addr
  363. endif
  364. ifeq ($(TARGET_ARCH_POWERPC),yes)
  365. OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o
  366. endif
  367. ifeq ($(TARGET_MMI),yes)
  368. OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o
  369. endif
  370. ifeq ($(TARGET_ALTIVEC),yes)
  371. OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \
  372. ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \
  373. ppc/dsputil_h264_altivec.o ppc/dsputil_snow_altivec.o
  374. endif
  375. ifeq ($(TARGET_ARCH_SH4),yes)
  376. OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
  377. endif
  378. ifeq ($(TARGET_ARCH_SPARC),yes)
  379. OBJS+=sparc/dsputil_vis.o
  380. sparc/%.o: sparc/%.c
  381. $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $<
  382. endif
  383. NAME=avcodec
  384. LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF)
  385. ifeq ($(BUILD_SHARED),yes)
  386. LIBVERSION=$(LAVCVERSION)
  387. LIBMAJOR=$(LAVCMAJOR)
  388. endif
  389. TESTS= imgresample-test dct-test motion-test fft-test
  390. include $(SRC_PATH)/common.mak
  391. amrlibs:
  392. $(MAKE) -C amr spclib fipoplib
  393. tests: apiexample cpuid_test $(TESTS)
  394. dsputil.o: dsputil.c dsputil.h
  395. clean::
  396. rm -f \
  397. i386/*.o i386/*~ \
  398. armv4l/*.o armv4l/*~ \
  399. mlib/*.o mlib/*~ \
  400. alpha/*.o alpha/*~ \
  401. ppc/*.o ppc/*~ \
  402. ps2/*.o ps2/*~ \
  403. sh4/*.o sh4/*~ \
  404. sparc/*.o sparc/*~ \
  405. liba52/*.o liba52/*~ \
  406. amr_float/*.o \
  407. apiexample $(TESTS)
  408. -$(MAKE) -C amr clean
  409. -$(MAKE) -C amrwb_float -f makefile.gcc clean
  410. # api example program
  411. apiexample: apiexample.c $(LIB)
  412. $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS)
  413. # cpuid test
  414. cpuid_test: i386/cputest.c
  415. $(CC) $(CFLAGS) -D__TEST__ -o $@ $<
  416. # testing progs
  417. imgresample-test: imgresample.c
  418. $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm
  419. dct-test: dct-test.o fdctref.o $(LIB)
  420. $(CC) -o $@ $^ -lm $(LIBAVUTIL)
  421. motion-test: motion_test.o $(LIB)
  422. $(CC) -o $@ $^ -lm
  423. fft-test: fft-test.o $(LIB)
  424. $(CC) -o $@ $^ $(LIBAVUTIL) -lm