Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-06msrledec: check bounds before constructing a possibly invalid pointer,Anton Khirnov
CC:libav-stable@libav.org
2012-04-12msrle: convert MS RLE decoding function to bytestream2.Ronald Bultje
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-02-13Drop unnecessary av_uninit attributes from some variable declarations.Diego Biurrun
Recent versions of gcc (4.4+) no longer give false positive warnings.
2012-01-28cosmetics: Remove extra newlines at EOFAlex Converse
2011-12-07cosmetics: drop some completely pointless parenthesesDiego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-11-02Fix possibly exploitable out of buffer writes in msrle_decode_pal4().Michael Niedermayer
This fix is minimalistic, that function should be cleaned up by someone. Originally committed as revision 25633 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-02Fix possibly exploitable buffer overrun in msrle_decode_8_16_24_32().Michael Niedermayer
Issue has been reported to me by Gynvael Coldwind Originally committed as revision 25632 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-02remove impossible condition from msrle_decode_pal4()Michael Niedermayer
Originally committed as revision 25631 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-11-02fix indentMichael Niedermayer
Originally committed as revision 25630 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
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
2010-02-28Include msrledec.h: It contains the prototype for ff_msrle_decode().Carl Eugen Hoyos
Originally committed as revision 22105 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-01Make MS RLE decoder produce both bottom-up and top-down picturesKostya Shishkov
Originally committed as revision 20111 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-27do not print false error if eof follows eolBaptiste Coudurier
Originally committed as revision 18965 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-22cosmetics: Fix some typos.Diego Biurrun
Originally committed as revision 18894 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-16Fix off-by-one error in MS RLE decoder which may result into writing pastKostya Shishkov
picture buffer. Originally committed as revision 18852 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-11Add av_uninit macro to variables to avoid false positive warnings:Diego Biurrun
libavcodec/msrledec.c: In function ‘ff_msrle_decode’: libavcodec/msrledec.c:139: warning: ‘pix32’ may be used uninitialized in this function libavcodec/msrledec.c:138: warning: ‘pix16’ may be used uninitialized in this function Originally committed as revision 17156 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Fix build: Add intreadwrite.h and bswap.h #includes where necessary.Diego Biurrun
Originally committed as revision 16556 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-06Make decoding run of pixels in MS RLE saner.Kostya Shishkov
This is based on patches by Alex Converse and Mans Rullgard Thread "[PATCH] Fix MSRLE type punning" Originally committed as revision 16013 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-06Print out some errors found during MS RLE decodingKostya Shishkov
Originally committed as revision 16012 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-18Factorize out code used for MS RLE format decoding in different decoders.Kostya Shishkov
Originally committed as revision 15356 to svn://svn.ffmpeg.org/ffmpeg/trunk