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.

225 lines
14KB

  1. include $(SUBDIR)../config.mak
  2. NAME = avutil
  3. HEADERS = adler32.h \
  4. aes.h \
  5. aes_ctr.h \
  6. attributes.h \
  7. audio_fifo.h \
  8. avassert.h \
  9. avstring.h \
  10. avutil.h \
  11. base64.h \
  12. blowfish.h \
  13. bprint.h \
  14. bswap.h \
  15. buffer.h \
  16. cast5.h \
  17. camellia.h \
  18. channel_layout.h \
  19. common.h \
  20. cpu.h \
  21. crc.h \
  22. des.h \
  23. dict.h \
  24. display.h \
  25. downmix_info.h \
  26. error.h \
  27. eval.h \
  28. fifo.h \
  29. file.h \
  30. frame.h \
  31. hash.h \
  32. hmac.h \
  33. hwcontext.h \
  34. hwcontext_cuda.h \
  35. hwcontext_vaapi.h \
  36. hwcontext_vdpau.h \
  37. imgutils.h \
  38. intfloat.h \
  39. intreadwrite.h \
  40. lfg.h \
  41. log.h \
  42. macros.h \
  43. mathematics.h \
  44. mastering_display_metadata.h \
  45. md5.h \
  46. mem.h \
  47. motion_vector.h \
  48. murmur3.h \
  49. opt.h \
  50. parseutils.h \
  51. pixdesc.h \
  52. pixelutils.h \
  53. pixfmt.h \
  54. random_seed.h \
  55. rc4.h \
  56. rational.h \
  57. replaygain.h \
  58. ripemd.h \
  59. samplefmt.h \
  60. sha.h \
  61. sha512.h \
  62. stereo3d.h \
  63. threadmessage.h \
  64. time.h \
  65. timecode.h \
  66. timestamp.h \
  67. tree.h \
  68. twofish.h \
  69. version.h \
  70. xtea.h \
  71. tea.h \
  72. HEADERS-$(CONFIG_LZO) += lzo.h
  73. HEADERS-$(CONFIG_OPENCL) += opencl.h
  74. ARCH_HEADERS = bswap.h \
  75. intmath.h \
  76. intreadwrite.h \
  77. timer.h \
  78. BUILT_HEADERS = avconfig.h \
  79. ffversion.h
  80. OBJS = adler32.o \
  81. aes.o \
  82. aes_ctr.o \
  83. audio_fifo.o \
  84. avstring.o \
  85. base64.o \
  86. blowfish.o \
  87. bprint.o \
  88. buffer.o \
  89. cast5.o \
  90. camellia.o \
  91. channel_layout.o \
  92. color_utils.o \
  93. cpu.o \
  94. crc.o \
  95. des.o \
  96. dict.o \
  97. display.o \
  98. downmix_info.o \
  99. error.o \
  100. eval.o \
  101. fifo.o \
  102. file.o \
  103. file_open.o \
  104. float_dsp.o \
  105. fixed_dsp.o \
  106. frame.o \
  107. hash.o \
  108. hmac.o \
  109. hwcontext.o \
  110. imgutils.o \
  111. integer.o \
  112. intmath.o \
  113. lfg.o \
  114. lls.o \
  115. log.o \
  116. log2_tab.o \
  117. mathematics.o \
  118. mastering_display_metadata.o \
  119. md5.o \
  120. mem.o \
  121. murmur3.o \
  122. opt.o \
  123. parseutils.o \
  124. pixdesc.o \
  125. pixelutils.o \
  126. random_seed.o \
  127. rational.o \
  128. reverse.o \
  129. rc4.o \
  130. ripemd.o \
  131. samplefmt.o \
  132. sha.o \
  133. sha512.o \
  134. stereo3d.o \
  135. threadmessage.o \
  136. time.o \
  137. timecode.o \
  138. tree.o \
  139. twofish.o \
  140. utils.o \
  141. xga_font_data.o \
  142. xtea.o \
  143. tea.o \
  144. OBJS-$(!HAVE_ATOMICS_NATIVE) += atomic.o \
  145. OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o
  146. OBJS-$(CONFIG_LZO) += lzo.o
  147. OBJS-$(CONFIG_OPENCL) += opencl.o opencl_internal.o
  148. OBJS-$(CONFIG_VAAPI) += hwcontext_vaapi.o
  149. OBJS-$(CONFIG_VDPAU) += hwcontext_vdpau.o
  150. OBJS += $(COMPAT_OBJS:%=../compat/%)
  151. # Windows resource file
  152. SLIBOBJS-$(HAVE_GNU_WINDRES) += avutilres.o
  153. SKIPHEADERS-$(CONFIG_CUDA) += hwcontext_cuda.h
  154. SKIPHEADERS-$(CONFIG_VAAPI) += hwcontext_vaapi.h
  155. SKIPHEADERS-$(CONFIG_VDPAU) += hwcontext_vdpau.h
  156. SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
  157. SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
  158. SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
  159. SKIPHEADERS-$(CONFIG_OPENCL) += opencl.h
  160. TESTPROGS = adler32 \
  161. aes \
  162. atomic \
  163. avstring \
  164. base64 \
  165. blowfish \
  166. bprint \
  167. cast5 \
  168. camellia \
  169. color_utils \
  170. cpu \
  171. crc \
  172. des \
  173. dict \
  174. display \
  175. error \
  176. eval \
  177. file \
  178. fifo \
  179. float_dsp \
  180. hash \
  181. hmac \
  182. lfg \
  183. lls \
  184. log \
  185. md5 \
  186. murmur3 \
  187. opt \
  188. pca \
  189. parseutils \
  190. pixdesc \
  191. pixelutils \
  192. random_seed \
  193. rational \
  194. ripemd \
  195. sha \
  196. sha512 \
  197. softfloat \
  198. tree \
  199. twofish \
  200. utf8 \
  201. xtea \
  202. tea \
  203. TESTPROGS-$(HAVE_LZO1X_999_COMPRESS) += lzo
  204. TOOLS = crypto_bench ffhash ffeval ffescape
  205. tools/crypto_bench$(EXESUF): ELIBS += $(if $(VERSUS),$(subst +, -l,+$(VERSUS)),)
  206. tools/crypto_bench$(EXESUF): CFLAGS += -DUSE_EXT_LIBS=0$(if $(VERSUS),$(subst +,+USE_,+$(VERSUS)),)
  207. $(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2