summaryrefslogtreecommitdiff
path: root/libavcodec/mjpeg.c
Commit message (Collapse)AuthorAge
...
* 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
* always parse APP* as it sometimes contains startcodes which confuse the ↵Michael Niedermayer2004-03-26
| | | | | | decoder otherwise Originally committed as revision 2927 to svn://svn.ffmpeg.org/ffmpeg/trunk
* init cleanupMichael Niedermayer2004-03-16
| | | | Originally committed as revision 2899 to svn://svn.ffmpeg.org/ffmpeg/trunk
* multithreaded/SMP motion estimationMichael Niedermayer2004-02-13
| | | | | | | | | multithreaded/SMP encoding for MPEG1/MPEG2/MPEG4/H263 all pthread specific code is in pthread.c to try it, run configure --enable-pthreads and ffmpeg ... -threads <num> the internal thread API is a simple AVCodecContext.execute() callback which executes a given function pointer with different arguments and returns after finishing all, that way no mutexes or other thread-mess is needed outside pthread.c Originally committed as revision 2772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 2 byte shorter userdata for mpeg4Michael Niedermayer2004-02-08
| | | | | | | | in the past it was startcode,string,00,7F,startcode now it is startcode,string,stratcode both are mpeg4 compliant, as according to the standard the userdata lasts until the next 00 00 01 (startcode prefix) but some very primitive decoders which simply skip until the first 00 byte and then expect the next valid startcode might fail with the old variant, just a theory though (didnt test if quicktime can decode it now) Originally committed as revision 2767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get_bit_count -> put_bits_countAlex Beregszaszi2004-02-06
| | | | Originally committed as revision 2752 to svn://svn.ffmpeg.org/ffmpeg/trunk
* closed gop support & flags2 as all bits in flags are usedMichael Niedermayer2004-01-22
| | | | | | and a few minor things i forgot to commit ... Originally committed as revision 2718 to svn://svn.ffmpeg.org/ffmpeg/trunk
* grayscale mjpeg decoding support based upon a patch by (Leon Bottou (leonb))Michael Niedermayer2004-01-10
| | | | Originally committed as revision 2687 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set AVCodecContext.width/height before get_buffer()Michael Niedermayer2003-12-11
| | | | Originally committed as revision 2596 to svn://svn.ffmpeg.org/ffmpeg/trunk
* better fixMichael Niedermayer2003-11-12
| | | | Originally committed as revision 2513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* small mjpeg fix by (James Stembridge <jstembridge at users dot sourceforge ↵Michael Niedermayer2003-11-12
| | | | | | dot net>) Originally committed as revision 2512 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2003-11-03
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lAlex Beregszaszi2003-10-22
| | | | Originally committed as revision 2418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AVRationalMichael Niedermayer2003-10-20
| | | | | | | | | | sample_aspect_ratio aspect ratio in JPEG JFIF is SAR not DAR ! removed nonsense SAR guessing code various related cleanups bugs? Originally committed as revision 2403 to svn://svn.ffmpeg.org/ffmpeg/trunk
* disable encoders where appropriate (patch courtesy of BEROMike Melanson2003-10-14
| | | | | | <bero -at- geocities.co.jp>) Originally committed as revision 2375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed the obsolete and unused parameters of init_put_bitsAlex Beregszaszi2003-10-12
| | | | Originally committed as revision 2366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Sunplus JPEG codec (SP5X) supportAlex Beregszaszi2003-10-11
| | | | Originally committed as revision 2362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* recommit ofMichael Niedermayer2003-10-11
| | | | | | direct rendering support Originally committed as revision 2356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use lagrange multipler instead of qp for ratecontrol, this may break some ↵Michael Niedermayer2003-10-07
| | | | | | | | things, tell me ASAP if u notice anything broken quality which was 1..31 float is now a 1..FF_LAMBDA_MAX int, and FF_QP2LAMBDA * qp can be used to convert to the new range Originally committed as revision 2348 to svn://svn.ffmpeg.org/ffmpeg/trunk
* removed warningsFabrice Bellard2003-09-09
| | | | Originally committed as revision 2248 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10lMichael Niedermayer2003-07-14
| | | | Originally committed as revision 2042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cleanupMichael Niedermayer2003-07-12
| | | | Originally committed as revision 2038 to svn://svn.ffmpeg.org/ffmpeg/trunk
* postprocessing supportMichael Niedermayer2003-07-10
| | | | | | fix duplicate frames bug? Originally committed as revision 2031 to svn://svn.ffmpeg.org/ffmpeg/trunk