aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mjpeg.c
Commit message (Collapse)AuthorAgeFilesLines
* mjpeg a dump header bitstream filter, modifies bitstream to be decoded by ↵Baptiste Coudurier2006-12-011-0/+61
| | | | | | quicktime Originally committed as revision 7201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode non-interleaved scansKostya Shishkov2006-11-211-8/+2
| | | | Originally committed as revision 7143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some progressive JPEG supportKostya Shishkov2006-11-201-9/+113
| | | | Originally committed as revision 7131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* JPEG-LS 16-bit gray supportKostya Shishkov2006-10-241-5/+7
| | | | Originally committed as revision 6781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-071-4/+6
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mjpeg 4:2:2 encoding supportBaptiste Coudurier2006-10-041-7/+20
| | | | Originally committed as revision 6550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-271-1/+1
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Zero number of current scan after decoding one picture.Kostya Shishkov2006-09-211-0/+1
| | | | | | This fixes grayscale JPEG-LS decoding. Originally committed as revision 6306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless codeMichael Niedermayer2006-03-311-2/+0
| | | | Originally committed as revision 5256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify loop a littleMichael Niedermayer2006-03-311-5/+3
| | | | Originally committed as revision 5255 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do UPDATE_CACHE only when needed (which should be VERY rare)Michael Niedermayer2006-03-311-2/+3
| | | | Originally committed as revision 5254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* + (sign&1) -> -sign (1 instruction less)Michael Niedermayer2006-03-311-1/+1
| | | | Originally committed as revision 5253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid hard to predict branch (idea by arpi)Michael Niedermayer2006-03-311-5/+4
| | | | Originally committed as revision 5252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix gcc 2.95 compilationMichael Niedermayer2006-03-291-2/+2
| | | | Originally committed as revision 5243 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid if(i>=63) check at the end of decode_block()Michael Niedermayer2006-03-291-3/+6
| | | | Originally committed as revision 5239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid i++ in decode_block()Michael Niedermayer2006-03-291-13/+22
| | | | Originally committed as revision 5238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor optimization of decode_block()Michael Niedermayer2006-03-291-6/+2
| | | | Originally committed as revision 5237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimizations by arpiMichael Niedermayer2006-03-291-6/+19
| | | | Originally committed as revision 5235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MSVC-compatible __align8/__align16 declarationSteve L'Homme2006-02-051-1/+1
| | | | | | patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
* JPEG-LS codec by (Kostya | kostya.forjunk gmail com)Michael Niedermayer2006-02-021-5/+64
| | | | Originally committed as revision 4917 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Mjpeg interlaced decoding fix, height was wrong while decoding (/2).Baptiste Coudurier2006-01-231-2/+3
| | | | | | Patch by Baptiste Coudurier, baptiste _ coudurier at smartjog _ com. Originally committed as revision 4885 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-121-1/+1
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-221-276/+276
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l to michael for breaking gcc 2.95 compile :)D Richard Felker III2005-12-201-1/+2
| | | | Originally committed as revision 4760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unfinished jpeg-ls codec (feel free to finish it ...)Michael Niedermayer2005-12-181-9/+53
| | | | Originally committed as revision 4752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-106/+106
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename put_string to ff_put_string to avoid a symbol clash on Mac OS X.Diego Biurrun2005-09-181-3/+3
| | | | Originally committed as revision 4597 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compilation fixes part 1 patch by (Arvind R. and Burkhard Plaum, plaum, ipf ↵Michael Niedermayer2005-08-261-1/+1
| | | | | | uni-stuttgart de) Originally committed as revision 4540 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reset restart_count when restart_interval is set and fill theReimar Döffinger2005-07-221-0/+4
| | | | | | MJpegDecodeContext with 0 on init. Originally committed as revision 4464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont pre allocate uselessly large buffer and dont ignore ↵Michael Niedermayer2005-07-171-6/+3
| | | | | | FF_INPUT_BUFFER_PADDING_SIZE Originally committed as revision 4452 to svn://svn.ffmpeg.org/ffmpeg/trunk
* verify len field validity in mjpeg_decode_com()Michael Niedermayer2005-07-171-3/+1
| | | | Originally committed as revision 4451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check len (should fix #1165694)Michael Niedermayer2005-07-111-1/+2
| | | | Originally committed as revision 4436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* kill warnings patch by (Måns Rullgård <mru inprovide com>)Måns Rullgård2005-02-241-1/+1
| | | | Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid buf_size == 0 checks in every decoderMichael Niedermayer2005-01-231-12/+0
| | | | Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* jpeg style yuv fixesMichael Niedermayer2005-01-201-4/+21
| | | | Originally committed as revision 3852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various security fixes and precautionary checksMichael Niedermayer2005-01-121-3/+18
| | | | Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Memory leak fix patch by (Burkhard Plaum <plaum >at< ipf.uni-stuttgart )dot( ↵Burkhard Plaum2004-11-271-7/+7
| | | | | | de>) Originally committed as revision 3717 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some type mismatches patch by (Jeff Muizelaar <muizelaar rogers com>)Jeff Muizelaar2004-11-251-1/+1
| | | | Originally committed as revision 3712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* workaround apps which dont provided correctly padded streamsMichael Niedermayer2004-11-191-2/+2
| | | | Originally committed as revision 3695 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix mjpeg-b (padding bytes can exist between end of sos and image data)Roberto Togni2004-10-291-3/+11
| | | | Originally committed as revision 3653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mjpeg parserMichael Niedermayer2004-10-241-0/+72
| | | | Originally committed as revision 3634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lowres width/height cleanup 3rd tryMichael Niedermayer2004-09-271-13/+8
| | | | Originally committed as revision 3522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2004-09-271-4/+6
| | | | Originally committed as revision 3519 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set AVCodecContext.width/height to the picture width/height instead of the ↵Michael Niedermayer2004-09-271-6/+8
| | | | | | one stored in the bitstream (that only matters if lowres!=0) Originally committed as revision 3518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* low resolution decoding fixMichael Niedermayer2004-09-261-2/+2
| | | | Originally committed as revision 3510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new copyrightsAlex Beregszaszi2004-08-211-0/+2
| | | | Originally committed as revision 3404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bits(32) fixMichael Niedermayer2004-08-161-7/+7
| | | | Originally committed as revision 3393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-211-6/+0
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup & memleak fixMichael Niedermayer2004-04-301-2/+1
| | | | Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hmm av_log(..., get_bits());Michael Niedermayer2004-03-281-5/+12
| | | | Originally committed as revision 2939 to svn://svn.ffmpeg.org/ffmpeg/trunk