aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/aac_tablegen.c
Commit message (Collapse)AuthorAgeFilesLines
* aacenc: move the generation of ff_aac_pow34sf_tab[]Rostislav Pehlivanov2015-07-211-0/+2
| | | | | | | | | | | | This commit moves the generation of ff_aac_pow34sf_tab[] out of the encoder and into the table generator. The original commit log for this table in 2011 actually mentions that it should be moved outside but this never happened. This is the first commit which cleans up the encoder a little. Reviewed-by: Claudio Freire <klaussfreire@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tablegen: implement and use WRITE_ARRAY macrosDiego Pettenò2010-06-271-3/+1
| | | | | | | | | Two macros (WRITE_ARRAY and WRITE_ARRAY_2D) take the prefix (modifiers) (not all tables are static, and they might not be constant either), the type, and the name of the array. It'll be copied with same name and type, and with the correct size of the currently-defined object. Originally committed as revision 23821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aactab: Tablegenify ff_aac_pow2sf_tab.Alex Converse2010-06-231-0/+39
Originally committed as revision 23740 to svn://svn.ffmpeg.org/ffmpeg/trunk