summaryrefslogtreecommitdiff
path: root/libavcodec/mpc8huff.h
Commit message (Collapse)AuthorAge
* avcodec/mpc8huff: Make some arrays unsigned to prevent overflowAndreas Rheinhardt2019-07-24
| | | | | | | | | | | mpc8_q4_syms is an array of int8_t that is initialized using values not in the range of an int8_t and that is only accessed via a pointer to uint8_t in ff_init_vlc_sparse. The latter applies to all the other *_bits and *_syms tables in mpc8huff.h, so make them all unsigned. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Musepack SV8 demuxer and decoderKostya Shishkov2007-11-07
Originally committed as revision 10938 to svn://svn.ffmpeg.org/ffmpeg/trunk