diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-04 21:12:32 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-12 20:39:17 +0200 |
commit | 930c9d4373e0f3cb7c64fcfc129127a309f6d066 (patch) | |
tree | 3b19450d2f717e3de3791f7a856c14b9a3799221 /libavcodec/Makefile | |
parent | f6c38c5f4ed6683a6a61db2ed418a68bbe5f5507 (diff) | |
download | ffmpeg-930c9d4373e0f3cb7c64fcfc129127a309f6d066.tar.gz |
avutil: Duplicate ff_log2_tab instead of sharing it across libs
The table is so small that the space gain is not worth the
performance overhead of cross-library access.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 5dbd60e067..a63e2baf46 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -22,6 +22,7 @@ OBJS = allcodecs.o \ fmtconvert.o \ imgconvert.o \ jrevdct.o \ + log2_tab.o \ mathtables.o \ options.o \ parser.o \ |