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.

151 lines
9.7KB

  1. NAME = avutil
  2. DESC = Libav utility library
  3. HEADERS = adler32.h \
  4. aes.h \
  5. attributes.h \
  6. audio_fifo.h \
  7. avassert.h \
  8. avstring.h \
  9. avutil.h \
  10. base64.h \
  11. blowfish.h \
  12. bswap.h \
  13. buffer.h \
  14. channel_layout.h \
  15. common.h \
  16. cpu.h \
  17. crc.h \
  18. dict.h \
  19. display.h \
  20. downmix_info.h \
  21. error.h \
  22. eval.h \
  23. fifo.h \
  24. file.h \
  25. frame.h \
  26. hmac.h \
  27. hwcontext.h \
  28. hwcontext_cuda.h \
  29. hwcontext_dxva2.h \
  30. hwcontext_qsv.h \
  31. hwcontext_vaapi.h \
  32. hwcontext_vdpau.h \
  33. imgutils.h \
  34. intfloat.h \
  35. intreadwrite.h \
  36. lfg.h \
  37. log.h \
  38. macros.h \
  39. mathematics.h \
  40. md5.h \
  41. mem.h \
  42. opt.h \
  43. parseutils.h \
  44. pixdesc.h \
  45. pixfmt.h \
  46. random_seed.h \
  47. rational.h \
  48. replaygain.h \
  49. samplefmt.h \
  50. sha.h \
  51. spherical.h \
  52. stereo3d.h \
  53. time.h \
  54. version.h \
  55. xtea.h \
  56. HEADERS-$(CONFIG_LZO) += lzo.h
  57. ARCH_HEADERS = bswap.h \
  58. intmath.h \
  59. intreadwrite.h \
  60. timer.h \
  61. BUILT_HEADERS = avconfig.h
  62. OBJS = adler32.o \
  63. aes.o \
  64. audio_fifo.o \
  65. avstring.o \
  66. base64.o \
  67. blowfish.o \
  68. buffer.o \
  69. channel_layout.o \
  70. cpu.o \
  71. crc.o \
  72. des.o \
  73. dict.o \
  74. display.o \
  75. downmix_info.o \
  76. error.o \
  77. eval.o \
  78. fifo.o \
  79. file.o \
  80. file_open.o \
  81. float_dsp.o \
  82. frame.o \
  83. hmac.o \
  84. hwcontext.o \
  85. imgutils.o \
  86. intmath.o \
  87. lfg.o \
  88. lls.o \
  89. log.o \
  90. log2_tab.o \
  91. mathematics.o \
  92. md5.o \
  93. mem.o \
  94. opt.o \
  95. parseutils.o \
  96. pixdesc.o \
  97. random_seed.o \
  98. rational.o \
  99. rc4.o \
  100. samplefmt.o \
  101. sha.o \
  102. spherical.o \
  103. stereo3d.o \
  104. time.o \
  105. tree.o \
  106. utils.o \
  107. xtea.o \
  108. OBJS-$(CONFIG_CUDA) += hwcontext_cuda.o
  109. OBJS-$(CONFIG_DXVA2) += hwcontext_dxva2.o
  110. OBJS-$(CONFIG_LIBMFX) += hwcontext_qsv.o
  111. OBJS-$(CONFIG_LZO) += lzo.o
  112. OBJS-$(CONFIG_VAAPI) += hwcontext_vaapi.o
  113. OBJS-$(CONFIG_VDPAU) += hwcontext_vdpau.o
  114. OBJS += $(COMPAT_OBJS:%=../compat/%)
  115. SKIPHEADERS-$(CONFIG_CUDA) += hwcontext_cuda.h
  116. SKIPHEADERS-$(CONFIG_DXVA2) += hwcontext_dxva2.h
  117. SKIPHEADERS-$(CONFIG_LIBMFX) += hwcontext_qsv.h
  118. SKIPHEADERS-$(CONFIG_VAAPI) += hwcontext_vaapi.h
  119. SKIPHEADERS-$(CONFIG_VDPAU) += hwcontext_vdpau.h
  120. TESTPROGS = adler32 \
  121. aes \
  122. avstring \
  123. base64 \
  124. blowfish \
  125. cpu \
  126. crc \
  127. des \
  128. eval \
  129. fifo \
  130. float_dsp \
  131. hmac \
  132. lfg \
  133. lls \
  134. md5 \
  135. opt \
  136. parseutils \
  137. sha \
  138. tree \
  139. xtea \
  140. TESTPROGS-$(HAVE_THREADS) += cpu_init