]> git.sesse.net Git - ffmpeg/commit
avcodec/aacdec_fixed: Move fixed-point sinewin tables to its only user
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 30 Dec 2020 00:46:34 +0000 (01:46 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Sun, 7 Feb 2021 09:28:29 +0000 (10:28 +0100)
commit698a4b22d09daf592c68b1a044ad22d5a7daf884
treef4d4623475a7fea5220bd15e59a036527f9995a4
parent3044d0efee9136c19dfdcf6dcdf957e910a73fd5
avcodec/aacdec_fixed: Move fixed-point sinewin tables to its only user

The fixed-point AAC decoder is the only user of the fixed-point sinewin
tables from sinewin; and it only uses a few of them (about 10% when
counting by size). This means that guarding initializing these tables by
an AVOnce (as done in 3719122065863f701026632f610175980d42b05a) is
unnecessary for them. Furthermore the array of pointers to the
individual arrays is also unneeded.

Therefore this commit moves these tables directly into aacdec_fixed.c;
this is done by ridding the original sinewin.h and sinewin_tablegen.h
headers completely of any fixed-point code at the cost of a bit of
duplicated code (the alternative is an ugly ifdef-mess).

This saves about 58KB from the binary when using hardcoded tables (as
these tables are hardcoded in this scenario); when not using hardcoded
tables, most of these savings only affect the .bss segment, but the rest
(< 1KB) contains relocations (i.e. savings in .data.rel.ro).

Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
13 files changed:
configure
libavcodec/Makefile
libavcodec/aac_defines.h
libavcodec/aacdec_fixed.c
libavcodec/aacdec_template.c
libavcodec/sinewin.c
libavcodec/sinewin.h
libavcodec/sinewin_fixed.c [deleted file]
libavcodec/sinewin_fixed_tablegen.c
libavcodec/sinewin_fixed_tablegen.h [new file with mode: 0644]
libavcodec/sinewin_tablegen.c
libavcodec/sinewin_tablegen.h
libavcodec/sinewin_tablegen_template.c [deleted file]