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.

135 lines
8.8KB

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