summaryrefslogtreecommitdiff
path: root/libavcodec/qtrle.c
Commit message (Collapse)AuthorAge
* mark qtrle input data as const.Reimar Döffinger2008-02-02
| | | | Originally committed as revision 11820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun2007-05-10
| | | | Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of unnecessary pointer casts.Nicholas Tung2007-04-08
| | | | | | patch by Nicholas Tung, ntung ntung com Originally committed as revision 8687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous setting of has_b_frames in codecs without B-frames.Nicholas Tung2007-04-07
| | | | | | patch by Nicholas Tung, ntung ntung com Originally committed as revision 8647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace deprecated PIX_FMT names by the newer variants.Diego Biurrun2007-02-07
| | | | Originally committed as revision 7867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-19
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* correctly deal with the alpha channel in 32-bit QT RLE (courtesy of JohnMike Melanson2005-12-14
| | | | | | Koleszar <jkoleszar at on2.com>) Originally committed as revision 4743 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make rle_code int everywhere instead of signed char.Matthieu Castet2005-10-28
| | | | | | | | Fixes playback of auth_generator-demo.mov, for rle_code == -128 the assignement rle_code = -rle_code would overflow. Patch by matthieu castet (castet matthieu (at) free fr) Originally committed as revision 4669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tinfoil patch: make sure pixel_ptr never goes negativeMike Melanson2005-08-13
| | | | Originally committed as revision 4513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid buf_size == 0 checks in every decoderMichael Niedermayer2005-01-23
| | | | Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for qtrle4 (16 colors/gray levels)Roberto Togni2004-05-31
| | | | Originally committed as revision 3183 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove numerous definitions of BE_*/LE_* macros; convert FOURCC_TAG ->Mike Melanson2004-03-14
| | | | | | MKTAG/MKBETAG Originally committed as revision 2886 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rle_code can overflow when multiplied by 4Roberto Togni2004-02-14
| | | | | | (fixes Animation-256Greys.mov from mphq) Originally committed as revision 2786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use av_logRoberto Togni2004-02-14
| | | | Originally committed as revision 2784 to svn://svn.ffmpeg.org/ffmpeg/trunk
* initial commit for Quicktime Animation (RLE) video decoder; bit depthsMike Melanson2004-02-05
32, 24, and 16 are working; 8bpp is partially working; 4, 2, and 1 bpp are not supported yet Originally committed as revision 2748 to svn://svn.ffmpeg.org/ffmpeg/trunk