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.

132 lines
8.5KB

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