summaryrefslogtreecommitdiff
path: root/libavcodec/bink.c
Commit message (Collapse)AuthorAge
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* bink: use LOCAL_ALIGNED for aligned stack dataMans Rullgard2011-02-25
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Merge libavcore into libavutilReinhard Tartler2011-02-15
| | | | | | | | | | | | It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* bink: permute Bink version 'b' quant matrices by inverse scan orderPeter Ross2011-02-13
| | | | | | | This fixes visual glitches in Bink version 'b' files, as the quantization tables were not being permuted. Signed-off-by: Mans Rullgard <mans@mansr.com>
* bink: simplify how quantization matrices are passed to read_dct_coeffs()Peter Ross2011-02-13
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make tables generation insensitive to floating-point implementationVitor Sessak2011-02-12
| | | | | | | Using doubles make the double -> int cast well defined for all the values used, with the exception of when s[i]==1.0, which is special-cased. Signed-off-by: Mans Rullgard <mans@mansr.com>
* bink: reindent after last commitPeter Ross2011-02-11
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Bink version 'b' video decoderPeter Ross2011-02-11
| | | | | | Based on original patch by Kostya Shishkov Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* 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