summaryrefslogtreecommitdiff
path: root/libavcodec/tiff.c
Commit message (Collapse)AuthorAge
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 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
* lzw.h does not need get_bits.h, tiff.c needs intreadwrite.h for AV_R* thoughBaptiste Coudurier2009-12-03
| | | | Originally committed as revision 20724 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ff_reverse in libavcodec to av_reverse in libavutil.Francesco Lavra2009-11-09
| | | | | | Patch by Francesco Lavra, francescolavra interfree it Originally committed as revision 20484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not attempt to decode TIFF files containing fax data with uncompressedKostya Shishkov2009-10-01
| | | | | | mode allowed for there is no code to decode it (yet). Originally committed as revision 20114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When BitsPerSample tag is not present in TIFF, that means file isKostya Shishkov2009-09-30
| | | | | | | monochrome, so initialize picture before decoding. This fixes decoding monochrome files produced by lavc TIFF encoder. Originally committed as revision 20091 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Finally distinguish TIFF_CCITT_RLE and TIFF_G3 1-D case, so both of themKostya Shishkov2009-09-28
| | | | | | | will be decoded correctly. This fixes issue 1423. Originally committed as revision 20065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make TIFF decoder load compression options only for corresponding codecKostya Shishkov2009-09-28
| | | | Originally committed as revision 20064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not compile ZLib data uncompressing function in TIFF decoder when ZLib isMartin Storsjö2009-09-27
| | | | | | | | not present. Patch by Martin Storsjö ($firstname <at> $firstname <dot> two first letters of $lastname) Originally committed as revision 20058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Looks like ZLib uncompress() cannot deal with some kinds of TIFF deflated data,Kostya Shishkov2009-09-27
| | | | | | | so replace it with custom code. This fixes issue 1419. Originally committed as revision 20054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support both LSB and MSB orders for TIFF CCITT G.x compressed data.Kostya Shishkov2009-09-24
| | | | | | This fixes issue 1410. Originally committed as revision 20016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tiff image decoder uses get_buffer, set CODEC_CAP_DR1Baptiste Coudurier2009-06-05
| | | | Originally committed as revision 19108 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check combined depth and number of components in TIFF decoder, thus eliminatingKostya Shishkov2009-06-02
| | | | | | additional checks for each depth (like 48-bit gray vs. 48-bit RGB) Originally committed as revision 19076 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add 32-bit RGB support to TIFF decoder and extend a bit 'unsupported format' ↵Kostya Shishkov2009-05-06
| | | | | | message Originally committed as revision 18755 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless assignment during initialization for some decodersKostya Shishkov2009-04-24
| | | | Originally committed as revision 18680 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
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enable faxcompr.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16349 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode TIFF image only after all tags have been decodedKostya Shishkov2008-12-22
| | | | Originally committed as revision 16268 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some TIFFs declare -1 for the single strip heightKostya Shishkov2008-12-22
| | | | Originally committed as revision 16267 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add monochrome TIFF supportKostya Shishkov2008-12-22
| | | | Originally committed as revision 16266 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Calculate line size variable correctly for lower bitdepths and use it for ↵Kostya Shishkov2008-12-22
| | | | | | raw data copying Originally committed as revision 16265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 4l: TIFF stores short strings inside tag, do not interpret it is as an offsetKostya Shishkov2008-12-17
| | | | | | Fixes issue 753 Originally committed as revision 16189 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
* 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 11747 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TIFF may omit compression tag.Kostya Shishkov2007-12-01
| | | | | | This fixes issue 276. Originally committed as revision 11121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use correct type for paletteMåns Rullgård2007-07-09
| | | | Originally committed as revision 9554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warningsMåns Rullgård2007-07-08
| | | | Originally committed as revision 9550 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
* Add some Doxygen comments, by Kamil Nowosad, k.nowosad students.mimuw.edu pl.Diego Biurrun2007-04-04
| | | | Originally committed as revision 8624 to svn://svn.ffmpeg.org/ffmpeg/trunk
* tiff encoder by (Bartlomiej Wolowiec b.wolowiec students mimuw edu pl)Michael Niedermayer2007-04-03
| | | | Originally committed as revision 8608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some TIFFs do not set rows per strip for single strip.Kostya Shishkov2007-01-25
| | | | Originally committed as revision 7701 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
* Support for 16-bit grayscaleKostya Shishkov2006-11-13
| | | | Originally committed as revision 7012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give error about planar RGBKostya Shishkov2006-11-13
| | | | Originally committed as revision 7011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update error messageKostya Shishkov2006-11-13
| | | | Originally committed as revision 7010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use table for determining type sizesKostya Shishkov2006-11-13
| | | | Originally committed as revision 7009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decoder can decode many ZLib-packed stripsKostya Shishkov2006-11-13
| | | | Originally committed as revision 7007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Print error message for unsupported mode (RGB planar,CMYK,YCrCb)Kostya Shishkov2006-11-13
| | | | Originally committed as revision 7006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 8-bit images support for TIFFKostya Shishkov2006-11-13
| | | | Originally committed as revision 7005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rows per strip may be >= heightKostya Shishkov2006-11-13
| | | | Originally committed as revision 7004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Warn about JPEG in TIFFKostya Shishkov2006-11-13
| | | | Originally committed as revision 7003 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly detect 4-component imagesKostya Shishkov2006-11-13
| | | | Originally committed as revision 7002 to svn://svn.ffmpeg.org/ffmpeg/trunk
* LZW decoder as separate module plus TIFF LZW supportKostya Shishkov2006-10-26
| | | | Originally committed as revision 6795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l predictor should not skip first lineKostya Shishkov2006-10-26
| | | | Originally committed as revision 6794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TIFF decoderKostya Shishkov2006-10-13
Originally committed as revision 6682 to svn://svn.ffmpeg.org/ffmpeg/trunk