mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
04bf2e7f0e
This is done in accordance with all other libraries, which no longer access ff_log2_tab from avutil directly for shared builds, and instead obtain their own copy. This change is required for MSVC DLL builds, as well as avoids accessing a private symbol from another library. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
17 lines
468 B
Makefile
17 lines
468 B
Makefile
include $(SUBDIR)../config.mak
|
|
|
|
NAME = swresample
|
|
FFLIBS = avutil
|
|
|
|
HEADERS = swresample.h \
|
|
version.h \
|
|
|
|
OBJS = audioconvert.o \
|
|
dither.o \
|
|
log2_tab.o \
|
|
rematrix.o \
|
|
resample.o \
|
|
swresample.o \
|
|
|
|
TESTPROGS = swresample
|