summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-10-13 14:22:25 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-10-13 14:24:58 +0200
commitd197bd4f5ee752c95ebaf7d94257ca5121309674 (patch)
tree4944469aac7a57aa67e732ab1aa05f4a4eb81884 /libavcodec
parent3b0bb321a50cd2591c6bd46059a66f6a53d9fc08 (diff)
parent930c9d4373e0f3cb7c64fcfc129127a309f6d066 (diff)
Merge commit '930c9d4373e0f3cb7c64fcfc129127a309f6d066'
* commit '930c9d4373e0f3cb7c64fcfc129127a309f6d066': avutil: Duplicate ff_log2_tab instead of sharing it across libs Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/Makefile1
-rw-r--r--libavcodec/log2_tab.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 2946e0dbc3..47a01db55a 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -24,6 +24,7 @@ OBJS = allcodecs.o \
fmtconvert.o \
imgconvert.o \
jrevdct.o \
+ log2_tab.o \
mathtables.o \
options.o \
parser.o \
diff --git a/libavcodec/log2_tab.c b/libavcodec/log2_tab.c
new file mode 100644
index 0000000000..47a1df03b7
--- /dev/null
+++ b/libavcodec/log2_tab.c
@@ -0,0 +1 @@
+#include "libavutil/log2_tab.c"