summaryrefslogtreecommitdiff
path: root/libavcodec/bmp.c
Commit message (Collapse)AuthorAge
* bmp decoder uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier2009-06-05
| | | | Originally committed as revision 19094 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge some cases for reading raw data with different bit depths in BMPKostya Shishkov2009-03-27
| | | | Originally committed as revision 18202 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make BMP decoder try to decode files with incorrect filesize field valueKostya Shishkov2009-02-16
| | | | Originally committed as revision 17363 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence useless compiler warning when passing AVFrame* instead of AVPicture*Kostya Shishkov2009-02-01
| | | | | | to ff_msrle_decode() Originally committed as revision 16915 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some BMP files have file size declared in the header equal to headers sizeKostya Shishkov2008-11-24
| | | | | | | without image data, so try to correct that value before conducting checks on declared file size. Originally committed as revision 15924 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give more meaningful message on BMP header parsing errorKostya Shishkov2008-11-24
| | | | Originally committed as revision 15923 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add known BMP header sizes.Kostya Shishkov2008-11-24
| | | | | | Now 11B*.bmp from samples repository can be decoded. Originally committed as revision 15922 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitKostya Shishkov2008-09-23
| | | | Originally committed as revision 15391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add RLE4 and RLE8 decoding support for BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15390 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for 1-bit, 4-bit, 8-bit and some 16-bit raw BMPKostya Shishkov2008-09-23
| | | | Originally committed as revision 15389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate line size correctly for bit depths < 8Kostya Shishkov2008-09-23
| | | | Originally committed as revision 15388 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add newline at the end of messageKostya Shishkov2008-09-18
| | | | Originally committed as revision 15360 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to some AVCodec declarations.Stefano Sabatini2008-04-29
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13022 to svn://svn.ffmpeg.org/ffmpeg/trunk
* IndentationBenoit Fouet2008-04-14
| | | | Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for BMP os2v1.Benoit Fouet2008-04-14
| | | | Originally committed as revision 12815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assignment of CODEC_ID_BMP.Mark Cox2007-07-14
| | | | | | | | patch by mark cox melbournemark+ffmpeg _at_ gmail.com thread: [PATCH] Remove unessesary assignment of CODEC_ID_BMP date: Mon, 9 Jul 2007 20:12:28 +1000 Originally committed as revision 9675 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add decode_end method to bmp decoder. Patch by Michel Bardiaux,Michel Bardiaux2007-02-01
| | | | | | mbardiaux mediaxim dot be. Originally committed as revision 7796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memcpy out-of-bounds.Michel Bardiaux2007-01-31
| | | | | | patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make BMP decoder use bytestream. Patch by Michel BardiauxMichel Bardiaux2007-01-31
| | | | | | mbardiaux mediaxim dot be. Originally committed as revision 7773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix segfault in bmp decoder. Patch by Michel Bardiaux mbardiaux mediaxim dot be.Michel Bardiaux2007-01-29
| | | | Originally committed as revision 7757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Segregate code common to BMP decoder and future encoderMichel Bardiaux2007-01-27
| | | | | | patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7721 to svn://svn.ffmpeg.org/ffmpeg/trunk
* explicit values for all enumsMichael Niedermayer2007-01-24
| | | | Originally committed as revision 7683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* enumMichael Niedermayer2007-01-24
| | | | Originally committed as revision 7678 to svn://svn.ffmpeg.org/ffmpeg/trunk
* coded line size is a multiple of 4Måns Rullgård2006-10-30
| | | | Originally committed as revision 6844 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
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* BMP image decoderMåns Rullgård2005-11-30
Originally committed as revision 4711 to svn://svn.ffmpeg.org/ffmpeg/trunk