mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
37715b4594
Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
24 lines
668 B
Makefile
24 lines
668 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = swresample
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swresample.h \
|
|
version.h \
|
|
|
|
OBJS = audioconvert.o \
|
|
dither.o \
|
|
options.o \
|
|
rematrix.o \
|
|
resample.o \
|
|
resample_dsp.o \
|
|
swresample.o \
|
|
|
|
OBJS-$(CONFIG_LIBSOXR) += soxr_resample.o
|
|
OBJS-$(CONFIG_SHARED) += log2_tab.o
|
|
|
|
# Windows resource file
|
|
SLIBOBJS-$(HAVE_GNU_WINDRES) += swresampleres.o
|
|
|
|
TESTPROGS = swresample
|