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.8KB

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