1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-05-04 21:08:03 +02:00
Files
FFmpeg/libavutil/Makefile
T

131 lines
8.4 KiB
Makefile
Raw Normal View History

NAME = avutil
HEADERS = adler32.h \
2011-04-07 10:19:23 -03:00
aes.h \
attributes.h \
2012-03-23 17:45:48 -04:00
audio_fifo.h \
2011-02-07 14:37:08 +01:00
audioconvert.h \
2010-10-01 13:55:13 +00:00
avassert.h \
avstring.h \
avutil.h \
base64.h \
blowfish.h \
2010-07-10 22:22:07 +00:00
bswap.h \
buffer.h \
channel_layout.h \
common.h \
cpu.h \
crc.h \
error.h \
eval.h \
fifo.h \
file.h \
2012-10-17 11:51:01 +02:00
frame.h \
hmac.h \
2011-02-07 14:37:08 +01:00
imgutils.h \
2012-01-29 20:09:22 +00:00
intfloat.h \
intfloat_readwrite.h \
2010-07-10 22:22:07 +00:00
intreadwrite.h \
2010-07-02 12:12:06 +00:00
lfg.h \
log.h \
mathematics.h \
md5.h \
mem.h \
2011-05-22 12:45:00 +02:00
dict.h \
2012-10-08 08:10:23 +02:00
old_pix_fmts.h \
2010-10-08 23:42:25 +00:00
opt.h \
2011-02-07 14:37:08 +01:00
parseutils.h \
2009-11-24 23:33:41 +00:00
pixdesc.h \
pixfmt.h \
random_seed.h \
rational.h \
2011-02-07 14:37:08 +01:00
samplefmt.h \
2011-04-07 10:19:23 -03:00
sha.h \
2012-06-20 01:24:39 +01:00
time.h \
version.h \
2012-07-03 15:53:16 +02:00
xtea.h \
HEADERS-$(CONFIG_LZO) += lzo.h
ARCH_HEADERS = bswap.h \
intmath.h \
intreadwrite.h \
timer.h \
2010-01-19 04:40:16 +00:00
BUILT_HEADERS = avconfig.h
2008-10-26 15:21:45 +00:00
OBJS = adler32.o \
aes.o \
2012-12-02 14:34:50 -08:00
atomic.o \
2012-03-23 17:45:48 -04:00
audio_fifo.o \
avstring.o \
2008-10-26 15:21:45 +00:00
base64.o \
blowfish.o \
buffer.o \
channel_layout.o \
cpu.o \
2008-10-26 15:21:45 +00:00
crc.o \
des.o \
2010-03-25 22:46:35 +00:00
error.o \
eval.o \
2008-10-26 15:21:45 +00:00
fifo.o \
file.o \
file_open.o \
2012-05-21 12:58:41 -04:00
float_dsp.o \
2012-10-17 11:51:01 +02:00
frame.o \
hmac.o \
2011-02-07 14:37:08 +01:00
imgutils.o \
2008-10-26 15:21:45 +00:00
intfloat_readwrite.o \
intmath.o \
2008-10-26 15:21:45 +00:00
lfg.o \
lls.o \
log.o \
log2_tab.o \
2008-10-26 15:21:45 +00:00
mathematics.o \
md5.o \
mem.o \
2011-05-22 12:45:00 +02:00
dict.o \
2010-09-26 14:25:22 +00:00
opt.o \
2011-02-07 14:37:08 +01:00
parseutils.o \
2009-11-24 23:33:41 +00:00
pixdesc.o \
random_seed.o \
2008-10-26 15:21:45 +00:00
rational.o \
rc4.o \
2011-02-07 14:37:08 +01:00
samplefmt.o \
sha.o \
2012-06-20 01:24:39 +01:00
time.o \
2008-10-26 15:21:45 +00:00
tree.o \
utils.o \
2012-07-03 15:53:16 +02:00
xtea.o \
OBJS-$(CONFIG_LZO) += lzo.o
2012-10-14 17:56:00 +01:00
OBJS += $(COMPAT_OBJS:%=../compat/%)
SKIPHEADERS = old_pix_fmts.h
SKIPHEADERS-$(HAVE_ATOMICS_GCC) += atomic_gcc.h
2013-03-27 19:26:19 +01:00
SKIPHEADERS-$(HAVE_ATOMICS_SUNCC) += atomic_suncc.h
SKIPHEADERS-$(HAVE_ATOMICS_WIN32) += atomic_win32.h
TESTPROGS = adler32 \
aes \
2012-12-02 14:34:50 -08:00
atomic \
avstring \
base64 \
blowfish \
cpu \
crc \
des \
eval \
fifo \
2013-01-15 13:05:12 +02:00
hmac \
lfg \
lls \
md5 \
opt \
parseutils \
sha \
tree \
2012-07-03 15:53:16 +02:00
xtea \