summaryrefslogtreecommitdiff
path: root/libavcodec/wmaprodata.h
Commit message (Collapse)AuthorAge
* avcodec/wmaprodec: Use symbol table more efficientlyAndreas Rheinhardt2022-09-07
| | | | | | | | | By using a symbol table one can already bake in applying a LUT on the return value of get_vlc2(). So change the symbol table for the vec2 and vec4 tables to avoid using the symbol_to_vec2/4 LUTs. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec/wmaprodec: Use ff_init_vlc_from_lengths() instead of init_vlcAndreas Rheinhardt2022-09-07
| | | | | | | It allows to replace tables of big codes (uint16_t and uint32_t) by tables of smaller symbols (mostly uint8_t). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* WMA: store level_table as floats, use type punning for sign flip in decodeMåns Rullgård2009-09-29
| | | | Originally committed as revision 20078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make default_correlation array const since it is never modified.Reimar Döffinger2009-09-19
| | | | Originally committed as revision 19924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #includes to pass 'make checkheaders'.Diego Biurrun2009-08-21
| | | | Originally committed as revision 19675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R coding style, prettyprintingDiego Biurrun2009-08-02
| | | | Originally committed as revision 19564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add approved hunks of the wmapro decoderSascha Sommer2009-08-02
Originally committed as revision 19563 to svn://svn.ffmpeg.org/ffmpeg/trunk