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
2009-09-24Take into account real number of colours when reading BMP palette.Kostya Shishkov
This fixes issue 1408 Originally committed as revision 20007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-05bmp decoder uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier
Originally committed as revision 19094 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
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
2009-03-27Merge some cases for reading raw data with different bit depths in BMPKostya Shishkov
Originally committed as revision 18202 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-16Make BMP decoder try to decode files with incorrect filesize field valueKostya Shishkov
Originally committed as revision 17363 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Silence useless compiler warning when passing AVFrame* instead of AVPicture*Kostya Shishkov
to ff_msrle_decode() Originally committed as revision 16915 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-24Some BMP files have file size declared in the header equal to headers sizeKostya Shishkov
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
2008-11-24Give more meaningful message on BMP header parsing errorKostya Shishkov
Originally committed as revision 15923 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-11-24Add known BMP header sizes.Kostya Shishkov
Now 11B*.bmp from samples repository can be decoded. Originally committed as revision 15922 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-23Cosmetics: reindent after last commitKostya Shishkov
Originally committed as revision 15391 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-23Add RLE4 and RLE8 decoding support for BMPKostya Shishkov
Originally committed as revision 15390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-23Add support for 1-bit, 4-bit, 8-bit and some 16-bit raw BMPKostya Shishkov
Originally committed as revision 15389 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-23Calculate line size correctly for bit depths < 8Kostya Shishkov
Originally committed as revision 15388 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-09-18add newline at the end of messageKostya Shishkov
Originally committed as revision 15360 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-30Add long names to some AVCodec declarations.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13022 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-14IndentationBenoit Fouet
Originally committed as revision 12816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-14Support for BMP os2v1.Benoit Fouet
Originally committed as revision 12815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11757 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-14Remove redundant assignment of CODEC_ID_BMP.Mark Cox
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
2007-02-01Add decode_end method to bmp decoder. Patch by Michel Bardiaux,Michel Bardiaux
mbardiaux mediaxim dot be. Originally committed as revision 7796 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-31Fix memcpy out-of-bounds.Michel Bardiaux
patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7780 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-31Make BMP decoder use bytestream. Patch by Michel BardiauxMichel Bardiaux
mbardiaux mediaxim dot be. Originally committed as revision 7773 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-29Fix segfault in bmp decoder. Patch by Michel Bardiaux mbardiaux mediaxim dot be.Michel Bardiaux
Originally committed as revision 7757 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-27Segregate code common to BMP decoder and future encoderMichel Bardiaux
patch by Michel Bardiaux, mbardiaux mediaxim be Originally committed as revision 7721 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-24explicit values for all enumsMichael Niedermayer
Originally committed as revision 7683 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-24enumMichael Niedermayer
Originally committed as revision 7678 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-30coded line size is a multiple of 4Måns Rullgård
Originally committed as revision 6844 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-11-30BMP image decoderMåns Rullgård
Originally committed as revision 4711 to svn://svn.ffmpeg.org/ffmpeg/trunk