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:
Hendrik Leppkes 2012-10-19 21:35:40 +02:00 committed by Michael Niedermayer
parent 953a3dcc4e
commit 04bf2e7f0e
2 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ HEADERS = swresample.h \
OBJS = audioconvert.o \
dither.o \
log2_tab.o \
rematrix.o \
resample.o \
swresample.o \

1
libswresample/log2_tab.c Normal file
View File

@ -0,0 +1 @@
#include "libavutil/log2_tab.c"