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.

142 lines
9.3KB

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