lsws: duplicate ff_log2_tab

libswscale uses the table but wasn't duplicating it like the rest of the libs.
This should fix compilation failures on msvc/icl after lavu stopped exporting
internal functions and tables.

Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
James Almer 2014-08-12 15:21:24 -03:00 committed by Michael Niedermayer
parent 113229922a
commit 9ffac3d00d
2 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,8 @@ OBJS = hscale_fast_bilinear.o \
utils.o \
yuv2rgb.o \
OBJS-$(CONFIG_SHARED) += log2_tab.o
# Windows resource file
SLIBOBJS-$(HAVE_GNU_WINDRES) += swscaleres.o

1
libswscale/log2_tab.c Normal file
View File

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