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.

120 lines
7.7KB

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