]> git.sesse.net Git - ffmpeg/blob - libswscale/Makefile
swscale/swscale_unscaled: fix gbrap10be md5 different on big endian system
[ffmpeg] / libswscale / Makefile
1 NAME = swscale
2 DESC = FFmpeg image rescaling library
3
4 HEADERS = swscale.h                                                     \
5           version.h                                                     \
6
7 OBJS = alphablend.o                                     \
8        hscale.o                                         \
9        hscale_fast_bilinear.o                           \
10        gamma.o                                          \
11        input.o                                          \
12        options.o                                        \
13        output.o                                         \
14        rgb2rgb.o                                        \
15        slice.o                                          \
16        swscale.o                                        \
17        swscale_unscaled.o                               \
18        utils.o                                          \
19        yuv2rgb.o                                        \
20        vscale.o                                         \
21
22 OBJS-$(CONFIG_SHARED)        += log2_tab.o
23
24 # Windows resource file
25 SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
26
27 TESTPROGS = colorspace                                                  \
28             pixdesc_query                                               \
29             swscale                                                     \