summaryrefslogtreecommitdiff
path: root/libavcodec/mjpeg.c
Commit message (Collapse)AuthorAge
* mjpeg a dump header bitstream filter, modifies bitstream to be decoded by ↵Baptiste Coudurier2006-12-01
| | | | | | quicktime Originally committed as revision 7201 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Decode non-interleaved scansKostya Shishkov2006-11-21
| | | | Originally committed as revision 7143 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some progressive JPEG supportKostya Shishkov2006-11-20
| | | | Originally committed as revision 7131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* JPEG-LS 16-bit gray supportKostya Shishkov2006-10-24
| | | | 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-07
| | | | | | 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-04
| | | | Originally committed as revision 6550 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-27
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Zero number of current scan after decoding one picture.Kostya Shishkov2006-09-21
| | | | | | This fixes grayscale JPEG-LS decoding. Originally committed as revision 6306 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove useless codeMichael Niedermayer2006-03-31
| | | | Originally committed as revision 5256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify loop a littleMichael Niedermayer2006-03-31
| | | | 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-31
| | | | Originally committed as revision 5254 to svn://svn.ffmpeg.org/ffmpeg/trunk
* + (sign&1) -> -sign (1 instruction less)Michael Niedermayer2006-03-31
| | | | Originally committed as revision 5253 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid hard to predict branch (idea by arpi)Michael Niedermayer2006-03-31
| | | | Originally committed as revision 5252 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix gcc 2.95 compilationMichael Niedermayer2006-03-29
| | | | 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-29
| | | | Originally committed as revision 5239 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid i++ in decode_block()Michael Niedermayer2006-03-29
| | | | Originally committed as revision 5238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* minor optimization of decode_block()Michael Niedermayer2006-03-29
| | | | Originally committed as revision 5237 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimizations by arpiMichael Niedermayer2006-03-29
| | | | Originally committed as revision 5235 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MSVC-compatible __align8/__align16 declarationSteve L'Homme2006-02-05
| | | | | | 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-02
| | | | 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-23
| | | | | | 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-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: tabs --> spaces, some prettyprintingDiego Biurrun2005-12-22
| | | | 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-20
| | | | Originally committed as revision 4760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unfinished jpeg-ls codec (feel free to finish it ...)Michael Niedermayer2005-12-18
| | | | Originally committed as revision 4752 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
* Rename put_string to ff_put_string to avoid a symbol clash on Mac OS X.Diego Biurrun2005-09-18
| | | | 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-26
| | | | | | 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-22
| | | | | | 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-17
| | | | | | 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-17
| | | | Originally committed as revision 4451 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check len (should fix #1165694)Michael Niedermayer2005-07-11
| | | | 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-24
| | | | Originally committed as revision 3977 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid buf_size == 0 checks in every decoderMichael Niedermayer2005-01-23
| | | | Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* jpeg style yuv fixesMichael Niedermayer2005-01-20
| | | | Originally committed as revision 3852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various security fixes and precautionary checksMichael Niedermayer2005-01-12
| | | | 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-27
| | | | | | 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-25
| | | | Originally committed as revision 3712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* workaround apps which dont provided correctly padded streamsMichael Niedermayer2004-11-19
| | | | 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-29
| | | | Originally committed as revision 3653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mjpeg parserMichael Niedermayer2004-10-24
| | | | Originally committed as revision 3634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* lowres width/height cleanup 3rd tryMichael Niedermayer2004-09-27
| | | | Originally committed as revision 3522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2004-09-27
| | | | 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-27
| | | | | | 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-26
| | | | Originally committed as revision 3510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* new copyrightsAlex Beregszaszi2004-08-21
| | | | Originally committed as revision 3404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bits(32) fixMichael Niedermayer2004-08-16
| | | | Originally committed as revision 3393 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanup & memleak fixMichael Niedermayer2004-04-30
| | | | Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk
* hmm av_log(..., get_bits());Michael Niedermayer2004-03-28
| | | | Originally committed as revision 2939 to svn://svn.ffmpeg.org/ffmpeg/trunk