• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1NAME = swscale
2DESC = FFmpeg image rescaling library
3
4HEADERS = swscale.h                                                     \
5          version.h                                                     \
6          version_major.h                                               \
7
8OBJS = alphablend.o                                     \
9       hscale.o                                         \
10       hscale_fast_bilinear.o                           \
11       gamma.o                                          \
12       input.o                                          \
13       options.o                                        \
14       output.o                                         \
15       rgb2rgb.o                                        \
16       slice.o                                          \
17       swscale.o                                        \
18       swscale_unscaled.o                               \
19       utils.o                                          \
20       version.o                                        \
21       yuv2rgb.o                                        \
22       vscale.o                                         \
23
24# Objects duplicated from other libraries for shared builds
25SHLIBOBJS                    += log2_tab.o
26
27# Windows resource file
28SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o
29
30TESTPROGS = colorspace                                                  \
31            floatimg_cmp                                                \
32            pixdesc_query                                               \
33            swscale                                                     \
34