]> git.sesse.net Git - ffmpeg/blob - libavutil/Makefile
hwcontext_vdpau: Remove duplicate definition of GET_CALLBACK
[ffmpeg] / libavutil / Makefile
1 NAME = avutil
2
3 HEADERS = adler32.h                                                     \
4           aes.h                                                         \
5           attributes.h                                                  \
6           audio_fifo.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           dict.h                                                        \
19           display.h                                                     \
20           downmix_info.h                                                \
21           error.h                                                       \
22           eval.h                                                        \
23           fifo.h                                                        \
24           file.h                                                        \
25           frame.h                                                       \
26           hmac.h                                                        \
27           hwcontext.h                                                   \
28           hwcontext_cuda.h                                              \
29           hwcontext_dxva2.h                                             \
30           hwcontext_qsv.h                                               \
31           hwcontext_vaapi.h                                             \
32           hwcontext_vdpau.h                                             \
33           imgutils.h                                                    \
34           intfloat.h                                                    \
35           intreadwrite.h                                                \
36           lfg.h                                                         \
37           log.h                                                         \
38           macros.h                                                      \
39           mathematics.h                                                 \
40           md5.h                                                         \
41           mem.h                                                         \
42           opt.h                                                         \
43           parseutils.h                                                  \
44           pixdesc.h                                                     \
45           pixfmt.h                                                      \
46           random_seed.h                                                 \
47           rational.h                                                    \
48           replaygain.h                                                  \
49           samplefmt.h                                                   \
50           sha.h                                                         \
51           stereo3d.h                                                    \
52           time.h                                                        \
53           version.h                                                     \
54           xtea.h                                                        \
55
56 HEADERS-$(CONFIG_LZO)                   += lzo.h
57
58 ARCH_HEADERS = bswap.h                                                  \
59                intmath.h                                                \
60                intreadwrite.h                                           \
61                timer.h                                                  \
62
63 BUILT_HEADERS = avconfig.h
64
65 OBJS = adler32.o                                                        \
66        aes.o                                                            \
67        atomic.o                                                         \
68        audio_fifo.o                                                     \
69        avstring.o                                                       \
70        base64.o                                                         \
71        blowfish.o                                                       \
72        buffer.o                                                         \
73        channel_layout.o                                                 \
74        cpu.o                                                            \
75        crc.o                                                            \
76        des.o                                                            \
77        dict.o                                                           \
78        display.o                                                        \
79        downmix_info.o                                                   \
80        error.o                                                          \
81        eval.o                                                           \
82        fifo.o                                                           \
83        file.o                                                           \
84        file_open.o                                                      \
85        float_dsp.o                                                      \
86        frame.o                                                          \
87        hmac.o                                                           \
88        hwcontext.o                                                      \
89        imgutils.o                                                       \
90        intmath.o                                                        \
91        lfg.o                                                            \
92        lls.o                                                            \
93        log.o                                                            \
94        log2_tab.o                                                       \
95        mathematics.o                                                    \
96        md5.o                                                            \
97        mem.o                                                            \
98        opt.o                                                            \
99        parseutils.o                                                     \
100        pixdesc.o                                                        \
101        random_seed.o                                                    \
102        rational.o                                                       \
103        rc4.o                                                            \
104        samplefmt.o                                                      \
105        sha.o                                                            \
106        stereo3d.o                                                       \
107        time.o                                                           \
108        tree.o                                                           \
109        utils.o                                                          \
110        xtea.o                                                           \
111
112 OBJS-$(CONFIG_CUDA)                     += hwcontext_cuda.o
113 OBJS-$(CONFIG_DXVA2)                    += hwcontext_dxva2.o
114 OBJS-$(CONFIG_LIBMFX)                   += hwcontext_qsv.o
115 OBJS-$(CONFIG_LZO)                      += lzo.o
116 OBJS-$(CONFIG_VAAPI)                    += hwcontext_vaapi.o
117 OBJS-$(CONFIG_VDPAU)                    += hwcontext_vdpau.o
118
119 OBJS += $(COMPAT_OBJS:%=../compat/%)
120
121 SKIPHEADERS-$(CONFIG_CUDA)             += hwcontext_cuda.h
122 SKIPHEADERS-$(CONFIG_DXVA2)            += hwcontext_dxva2.h
123 SKIPHEADERS-$(CONFIG_LIBMFX)           += hwcontext_qsv.h
124 SKIPHEADERS-$(CONFIG_VAAPI)            += hwcontext_vaapi.h
125 SKIPHEADERS-$(CONFIG_VDPAU)            += hwcontext_vdpau.h
126 SKIPHEADERS-$(HAVE_ATOMICS_GCC)        += atomic_gcc.h
127 SKIPHEADERS-$(HAVE_ATOMICS_SUNCC)      += atomic_suncc.h
128 SKIPHEADERS-$(HAVE_ATOMICS_WIN32)      += atomic_win32.h
129
130 TESTPROGS = adler32                                                     \
131             aes                                                         \
132             atomic                                                      \
133             avstring                                                    \
134             base64                                                      \
135             blowfish                                                    \
136             cpu                                                         \
137             crc                                                         \
138             des                                                         \
139             eval                                                        \
140             fifo                                                        \
141             float_dsp                                                   \
142             hmac                                                        \
143             lfg                                                         \
144             lls                                                         \
145             md5                                                         \
146             opt                                                         \
147             parseutils                                                  \
148             sha                                                         \
149             tree                                                        \
150             xtea                                                        \