diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-11-27 17:01:49 -0500 |
---|---|---|
committer | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-11-28 09:41:15 -0500 |
commit | 79abf2d0ded860acf505de22c4f7a750e5e98446 (patch) | |
tree | b06a373e2e9fe43ba605f3a918d89421be672721 /libavcodec/Makefile | |
parent | 861f2b2a536b4bdc97cd4f4f14fcb08b957fe690 (diff) | |
download | ffmpeg-79abf2d0ded860acf505de22c4f7a750e5e98446.tar.gz |
avcodec/aac_tablegen: get rid of hardcoded tables entirely
Commit 96786a12f6df26990bbe7c0ca4592b3731724469 makes runtime
initialization cheap.
Tested with FATE, with/without --enable-hardcoded-tables.
Reviewed-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 68a573fc13..d85215d3fb 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -920,7 +920,6 @@ SLIBOBJS-$(HAVE_GNU_WINDRES) += avcodecres.o SKIPHEADERS += %_tablegen.h \ %_tables.h \ - aac_tablegen_decl.h \ fft-internal.h \ tableprint.h \ tableprint_vlc.h \ @@ -964,8 +963,7 @@ TESTOBJS = dctref.o TOOLS = fourcc2pixfmt -HOSTPROGS = aac_tablegen \ - aacps_tablegen \ +HOSTPROGS = aacps_tablegen \ aacps_fixed_tablegen \ aacsbr_tablegen \ aacsbr_fixed_tablegen \ @@ -999,7 +997,7 @@ $(SUBDIR)%_tablegen$(HOSTEXESUF): HOSTCFLAGS += -DCONFIG_SMALL=0 endif GEN_HEADERS = cbrt_tables.h cbrt_fixed_tables.h aacps_tables.h aacps_fixed_tables.h aacsbr_tables.h \ - aacsbr_fixed_tables.h aac_tables.h dsd_tables.h dv_tables.h \ + aacsbr_fixed_tables.h dsd_tables.h dv_tables.h \ sinewin_tables.h sinewin_fixed_tables.h mpegaudio_tables.h motionpixels_tables.h \ pcm_tables.h qdm2_tables.h GEN_HEADERS := $(addprefix $(SUBDIR), $(GEN_HEADERS)) @@ -1014,7 +1012,6 @@ $(SUBDIR)aacps_float.o: $(SUBDIR)aacps_tables.h $(SUBDIR)aacps_fixed.o: $(SUBDIR)aacps_fixed_tables.h $(SUBDIR)aacsbr.o: $(SUBDIR)aacsbr_tables.h $(SUBDIR)aacsbr_fixed.o: $(SUBDIR)aacsbr_fixed_tables.h -$(SUBDIR)aactab.o: $(SUBDIR)aac_tables.h $(SUBDIR)aactab_fixed.o: $(SUBDIR)aac_fixed_tables.h $(SUBDIR)dsddec.o: $(SUBDIR)dsd_tables.h $(SUBDIR)dvenc.o: $(SUBDIR)dv_tables.h |