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.

136 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. downmix_info.h \
  19. error.h \
  20. eval.h \
  21. fifo.h \
  22. file.h \
  23. frame.h \
  24. hmac.h \
  25. imgutils.h \
  26. intfloat.h \
  27. intreadwrite.h \
  28. lfg.h \
  29. log.h \
  30. macros.h \
  31. mathematics.h \
  32. md5.h \
  33. mem.h \
  34. dict.h \
  35. old_pix_fmts.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. downmix_info.o \
  68. error.o \
  69. eval.o \
  70. fifo.o \
  71. file.o \
  72. file_open.o \
  73. float_dsp.o \
  74. frame.o \
  75. hmac.o \
  76. imgutils.o \
  77. intmath.o \
  78. lfg.o \
  79. lls.o \
  80. log.o \
  81. log2_tab.o \
  82. mathematics.o \
  83. md5.o \
  84. mem.o \
  85. dict.o \
  86. opt.o \
  87. parseutils.o \
  88. pixdesc.o \
  89. random_seed.o \
  90. rational.o \
  91. rc4.o \
  92. samplefmt.o \
  93. sha.o \
  94. stereo3d.o \
  95. time.o \
  96. tree.o \
  97. utils.o \
  98. xtea.o \
  99. OBJS-$(CONFIG_LZO) += lzo.o
  100. OBJS += $(COMPAT_OBJS:%=../compat/%)
  101. SKIPHEADERS = old_pix_fmts.h
  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 \