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.

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