summaryrefslogtreecommitdiff
path: root/libavcodec/bink.c
Commit message (Collapse)AuthorAge
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Change some band size calculations in Bink decoder to use width in blocksKostya Shishkov2011-01-15
| | | | | | instead of real width, this fixes decoding of some Bink files with odd width. Originally committed as revision 26364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bink: make bink_rlelens static (it's only used in this file)Ramiro Polla2010-10-30
| | | | Originally committed as revision 25605 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use new imgutils.h API names, fix deprecation warnings.Stefano Sabatini2010-09-07
| | | | Originally committed as revision 25058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove use of the deprecated function avcodec_check_dimensions(), useStefano Sabatini2010-08-06
| | | | | | av_check_image_size() instead. Originally committed as revision 24711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-30
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* bink: correctly align local arraysMåns Rullgård2010-06-02
| | | | Originally committed as revision 23425 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix minor typoKostya Shishkov2010-03-21
| | | | Originally committed as revision 22614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink version 'h' also has chroma planes swappedKostya Shishkov2010-03-06
| | | | Originally committed as revision 22236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård2010-03-06
| | | | | | | These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode alpha plane in Bink videoKostya Shishkov2010-02-23
| | | | Originally committed as revision 21982 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent after last commitKostya Shishkov2010-02-23
| | | | Originally committed as revision 21981 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move plane decoding code into separate function in Bink decoderKostya Shishkov2010-02-23
| | | | Originally committed as revision 21980 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video decoder now can use extradata to detect alpha plane presenceKostya Shishkov2010-02-23
| | | | Originally committed as revision 21979 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Bink decoder able to skip alpha planeKostya Shishkov2010-02-22
| | | | Originally committed as revision 21963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make Bink decoder to stop decoding planes after all bits are used.Kostya Shishkov2010-02-22
| | | | | | | This prevents crashes during decoding grayscale Bink files like samples from Impossible Creatures game demo. Originally committed as revision 21961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct bundle lengths calculation for small Bink files.Kostya Shishkov2010-02-22
| | | | | | This fixes issue 1764. Originally committed as revision 21959 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bink video decoderKostya Shishkov2010-02-21
Originally committed as revision 21937 to svn://svn.ffmpeg.org/ffmpeg/trunk