]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
h264: reset ref count if decoding the slice header fails
[ffmpeg] / libavutil / Makefile
1 NAME = avutil
2
3 HEADERS = adler32.h                                                     \
4           aes.h                                                         \
5           attributes.h                                                  \
6           audio_fifo.h                                                  \
7           audioconvert.h                                                \
8           avassert.h                                                    \
9           avstring.h                                                    \
10           avutil.h                                                      \
11           base64.h                                                      \
12           blowfish.h                                                    \
13           bswap.h                                                       \
14           buffer.h                                                      \
15           channel_layout.h                                              \
16           common.h                                                      \
17           cpu.h                                                         \
18           crc.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           rational.h                                                    \
42           samplefmt.h                                                   \
43           sha.h                                                         \
44           stereo3d.h                                                    \
45           time.h                                                        \
46           version.h                                                     \
47           xtea.h                                                        \
48
49 HEADERS-$(CONFIG_LZO)                   += lzo.h
50
51 ARCH_HEADERS = bswap.h                                                  \
52                intmath.h                                                \
53                intreadwrite.h                                           \
54                timer.h                                                  \
55
56 BUILT_HEADERS = avconfig.h
57
58 OBJS = adler32.o                                                        \
59        aes.o                                                            \
60        atomic.o                                                         \
61        audio_fifo.o                                                     \
62        avstring.o                                                       \
63        base64.o                                                         \
64        blowfish.o                                                       \
65        buffer.o                                                         \
66        channel_layout.o                                                 \
67        cpu.o                                                            \
68        crc.o                                                            \
69        des.o                                                            \
70        error.o                                                          \
71        eval.o                                                           \
72        fifo.o                                                           \
73        file.o                                                           \
74        file_open.o                                                      \
75        float_dsp.o                                                      \
76        frame.o                                                          \
77        hmac.o                                                           \
78        imgutils.o                                                       \
79        intmath.o                                                        \
80        lfg.o                                                            \
81        lls.o                                                            \
82        log.o                                                            \
83        log2_tab.o                                                       \
84        mathematics.o                                                    \
85        md5.o                                                            \
86        mem.o                                                            \
87        dict.o                                                           \
88        opt.o                                                            \
89        parseutils.o                                                     \
90        pixdesc.o                                                        \
91        random_seed.o                                                    \
92        rational.o                                                       \
93        rc4.o                                                            \
94        samplefmt.o                                                      \
95        sha.o                                                            \
96        stereo3d.o                                                       \
97        time.o                                                           \
98        tree.o                                                           \
99        utils.o                                                          \
100        xtea.o                                                           \
101
102 OBJS-$(CONFIG_LZO)                      += lzo.o
103
104 OBJS += $(COMPAT_OBJS:%=../compat/%)
105
106 SKIPHEADERS          = old_pix_fmts.h
107
108 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
109 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
110 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
111
112 TESTPROGS = adler32                                                     \
113             aes                                                         \
114             atomic                                                      \
115             avstring                                                    \
116             base64                                                      \
117             blowfish                                                    \
118             cpu                                                         \
119             crc                                                         \
120             des                                                         \
121             eval                                                        \
122             fifo                                                        \
123             hmac                                                        \
124             lfg                                                         \
125             lls                                                         \
126             md5                                                         \
127             opt                                                         \
128             parseutils                                                  \
129             sha                                                         \
130             tree                                                        \
131             xtea                                                        \