diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-10-19 21:35:40 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-20 01:58:04 +0200 |
commit | 04bf2e7f0e9cf389f0756f0a413b7b275a75334f (patch) | |
tree | 45a1ad388127d28d67e17d3b421e1b185e788cb3 /libswresample/log2_tab.c | |
parent | 953a3dcc4e28995072a1148e9d533e8d7b32248c (diff) | |
download | ffmpeg-04bf2e7f0e9cf389f0756f0a413b7b275a75334f.tar.gz |
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>
Diffstat (limited to 'libswresample/log2_tab.c')
-rw-r--r-- | libswresample/log2_tab.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libswresample/log2_tab.c b/libswresample/log2_tab.c new file mode 100644 index 0000000000..47a1df03b7 --- /dev/null +++ b/libswresample/log2_tab.c @@ -0,0 +1 @@ +#include "libavutil/log2_tab.c" |