diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-10-11 01:16:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-10-11 18:29:36 +0200 |
commit | 9734b8ba56d05e970c353dfd5baafa43fdb08024 (patch) | |
tree | e1f40e82ce4aa2ab7dc081115278057e08ffbbb6 /libavcodec/Makefile | |
parent | 0a75d1da23b8659ec49391469bb592da12760077 (diff) | |
download | ffmpeg-9734b8ba56d05e970c353dfd5baafa43fdb08024.tar.gz |
Move avutil tables only used in libavcodec to libavcodec.
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 6aa13aff4f..5dbd60e067 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -22,6 +22,7 @@ OBJS = allcodecs.o \ fmtconvert.o \ imgconvert.o \ jrevdct.o \ + mathtables.o \ options.o \ parser.o \ raw.o \ @@ -655,12 +656,6 @@ OBJS-$(CONFIG_TEXT2MOVSUB_BSF) += movsub_bsf.o OBJS-$(HAVE_PTHREADS) += pthread.o OBJS-$(HAVE_W32THREADS) += pthread.o -# inverse.o contains the ff_inverse table definition, which is used by -# the FASTDIV macro (from libavutil); since referencing the external -# table has a negative effect on performance, copy it in libavcodec as -# well. -OBJS-$(!CONFIG_SMALL) += inverse.o - SKIPHEADERS += %_tablegen.h \ %_tables.h \ aac_tablegen_decl.h \ |