mirror of https://git.ffmpeg.org/ffmpeg.git
swresample: include ff_log2_tab for shared builds
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>
This commit is contained in:
parent
953a3dcc4e
commit
04bf2e7f0e
|
@ -8,6 +8,7 @@ HEADERS = swresample.h \
|
|||
|
||||
OBJS = audioconvert.o \
|
||||
dither.o \
|
||||
log2_tab.o \
|
||||
rematrix.o \
|
||||
resample.o \
|
||||
swresample.o \
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
#include "libavutil/log2_tab.c"
|
Loading…
Reference in New Issue