summaryrefslogtreecommitdiff
path: root/libavcodec/faxcompr.c
Commit message (Collapse)AuthorAge
* faxcompr: return meaningful errorsLuca Barbato2013-06-07
| | | | | | And optionally forward them to the caller instead of concealing them. Unify err and ret in a single variable.
* faxcompr: K&R formatting cosmeticsLuca Barbato2013-06-07
|
* faxcompr: Check malloc results and unify return pathAlex Converse2012-04-13
|
* vlc/rl: Add ff_ prefix to the nonstatic symbolsMartin Storsjö2012-02-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* doxygen: consistently place brief descriptionDiego Biurrun2011-07-14
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* 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
* Simplify r20025: use align_get_bits instead of reimplementing it.Reimar Döffinger2009-09-29
| | | | Originally committed as revision 20079 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sure all the bits are written to output in fax data decoder.Kostya Shishkov2009-09-29
| | | | | | | This fixes decoding TIFF images with fax compression and width being not multiple of eight (and issue 1429). Originally committed as revision 20072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent and reformat function declarationsKostya Shishkov2009-09-28
| | | | Originally committed as revision 20066 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
* Fix decoding of TIFF CCITT RLE compressed data.Kostya Shishkov2009-09-26
| | | | | | This fixes issue 1417. Originally committed as revision 20025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
| | | | | | put_bits.h. Originally committed as revision 18461 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
* Add missing void keyword to parameterless function declarations.Diego Biurrun2009-01-30
| | | | Originally committed as revision 16860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-12-26
| | | | Originally committed as revision 16348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify vertical modeMichael Niedermayer2008-12-26
| | | | Originally committed as revision 16347 to svn://svn.ffmpeg.org/ffmpeg/trunk
* And another sechole ...Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16346 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix yet another sechole.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix another sechole.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16344 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Minor simplification.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16343 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused run_start variable.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16342 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move sync line pointers code to the end of the loop, it is simpler that way.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16341 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of check for condition that is always true (run_off < avctx->width).Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16340 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Get rid of pix_left in the 2d code, it is simpler that way.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16339 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize "avctx->width + 2" out to avoid someone mistakenly changingMichael Niedermayer2008-12-26
| | | | | | some but not all. Originally committed as revision 16336 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic (moving pix_left update)Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Close gaping sechole. That is, a series of run=0 allows arbitrary data toMichael Niedermayer2008-12-26
| | | | | | be written over the end of the runs array. Originally committed as revision 16334 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor simplificationMichael Niedermayer2008-12-26
| | | | Originally committed as revision 16333 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge ff_ccitt_unpack_1d and 2d.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16332 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that an invalid run terminates the line.Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16331 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l != vs. == (yes, my fault not kostya's).Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16330 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-12-26
| | | | Originally committed as revision 16329 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify zero run handling in put_line().Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16328 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid negation in put_line().Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16327 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize mode switching in put_line().Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix (rewrite) find_group3_syncmarker().Michael Niedermayer2008-12-26
| | | | Originally committed as revision 16325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CCITT Fax Group 3 and 4 decompression by kostya.Michael Niedermayer2008-12-26
Will be activated after a little more reviewing and fixing by me. Commited now, so as to not lose history of that. Originally committed as revision 16323 to svn://svn.ffmpeg.org/ffmpeg/trunk