Commit | Line | Data |
---|---|---|
2ba45a60 DM |
1 | include $(SUBDIR)../config.mak |
2 | ||
3 | NAME = swresample | |
4 | FFLIBS = avutil | |
5 | ||
6 | HEADERS = swresample.h \ | |
7 | version.h \ | |
8 | ||
9 | OBJS = audioconvert.o \ | |
10 | dither.o \ | |
11 | options.o \ | |
12 | rematrix.o \ | |
13 | resample.o \ | |
14 | resample_dsp.o \ | |
15 | swresample.o \ | |
16 | swresample_frame.o \ | |
17 | ||
18 | OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o | |
19 | OBJS-$(CONFIG_SHARED) += log2_tab.o | |
20 | ||
21 | # Windows resource file | |
22 | SLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o | |
23 | ||
24 | TESTPROGS = swresample |