summaryrefslogtreecommitdiffstats
path: root/libavcodec/indeo3.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-071-1/+3
| | | | | | | | | | | 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
* Reindent after last commitAlex Converse2009-02-191-1/+1
| | | | Originally committed as revision 17464 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Some buffer checks for indeo3Alex Converse2009-02-191-2/+20
| | | | Originally committed as revision 17462 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded check.Benoit Fouet2009-01-261-3/+0
| | | | Originally committed as revision 16803 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an exploit in indeo by checking we are not writing out of the strip array.Benoit Fouet2009-01-261-0/+8
| | | | | | Fixes issue 655 Originally committed as revision 16802 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indeo3: replace sizeof(struct ...) by sizeof(*var)Aurelien Jacobs2008-12-141-2/+2
| | | | Originally committed as revision 16128 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace 'typedef struct ustr_t' by 'struct ustr', _t is POSIX namespace.Diego Biurrun2008-12-131-5/+5
| | | | Originally committed as revision 16099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename some variables and add some comments to try to be a bit more clear.Benoit Fouet2008-10-021-33/+34
| | | | Originally committed as revision 15510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix indentation.Benoit Fouet2008-10-011-6/+6
| | | | Originally committed as revision 15498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless context variable.Benoit Fouet2008-10-011-2/+0
| | | | Originally committed as revision 15495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge declaration and assignment.Benoit Fouet2008-10-011-13/+9
| | | | Originally committed as revision 15494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move iv_decode_frame function to remove a forward declaration.Benoit Fouet2008-09-301-72/+67
| | | | Originally committed as revision 15488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless lines.Benoit Fouet2008-09-301-4/+0
| | | | Originally committed as revision 15487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent whole file.Benoit Fouet2008-09-301-921/+921
| | | | Originally committed as revision 15486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Benoit Fouet2008-09-301-1/+1
| | | | Originally committed as revision 15480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify iv_free_func().Benoit Fouet2008-09-301-12/+0
| | | | Originally committed as revision 15479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move allocated buffer out of YUV buffer structure.Benoit Fouet2008-09-301-11/+11
| | | | Originally committed as revision 15478 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless initializations.Benoit Fouet2008-09-301-7/+0
| | | | Originally committed as revision 15477 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check allocations on init.Benoit Fouet2008-09-301-8/+17
| | | | Originally committed as revision 15476 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless test.Benoit Fouet2008-09-301-3/+1
| | | | Originally committed as revision 15475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CosmeticsBenoit Fouet2008-09-301-12/+13
| | | | Originally committed as revision 15474 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use uint8_t instead of unsigned charBenoit Fouet2008-09-301-18/+18
| | | | Originally committed as revision 15473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Corrector type fits in 8 bits.Benoit Fouet2008-09-301-3/+3
| | | | Originally committed as revision 15472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless casts and use variable instead of its type in sizeof.Benoit Fouet2008-09-301-2/+2
| | | | Originally committed as revision 15471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change table types to uint8_tBenoit Fouet2008-09-301-2/+2
| | | | Originally committed as revision 15470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-121-1/+1
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-271-1/+2
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-211-5/+5
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove more useless mpegvideo.h includesAurelien Jacobs2008-03-051-1/+0
| | | | Originally committed as revision 12323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-011-7/+7
| | | | Originally committed as revision 11731 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use bytestream.Michael Niedermayer2008-02-011-19/+11
| | | | Originally committed as revision 11730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constsMichael Niedermayer2008-02-011-3/+3
| | | | | | I have underestimated this a little, and these are just some ... Originally committed as revision 11708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Two tables that should be constReimar Döffinger2008-01-311-2/+2
| | | | Originally committed as revision 11692 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant #inclusion of common.h, avcodec.h already #includes it.Diego Biurrun2007-05-101-1/+0
| | | | Originally committed as revision 8967 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove superfluous setting of has_b_frames in codecs without B-frames.Nicholas Tung2007-04-071-1/+0
| | | | | | patch by Nicholas Tung, ntung ntung com Originally committed as revision 8647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use FFMINRamiro Polla2007-02-251-7/+3
| | | | | | patch by ramiro _at_ lisha.ufsc.br Originally committed as revision 8119 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
* fix some signedness warningsMåns Rullgård2006-09-271-1/+1
| | | | Originally committed as revision 6355 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-6/+6
| | | | Originally committed as revision 4764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-171-42/+42
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indeo3 for bigendian patch by (demo-n <demo-n users.sourceforge net)Michael Niedermayer2005-03-061-3/+6
| | | | Originally committed as revision 4016 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indeo3 for bigendian patch by (elf at frogger dot rules dot pl Sebastian ↵Sebastian Jedruszkiewicz2005-02-271-30/+45
| | | | | | Jedruszkiewicz) Originally committed as revision 3990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid buf_size == 0 checks in every decoderMichael Niedermayer2005-01-231-5/+0
| | | | Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* various security fixes and precautionary checksMichael Niedermayer2005-01-121-0/+4
| | | | Originally committed as revision 3822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing a few of gcc 'clean-code' warningsZdenek Kabelac2004-10-061-1/+2
| | | | Originally committed as revision 3563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* greyscale decoding (option to skip u,v planes) supportAlex Beregszaszi2004-09-211-0/+8
| | | | Originally committed as revision 3487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* data_size = 0 cleanupMichael Niedermayer2004-05-211-1/+0
| | | | Originally committed as revision 3146 to svn://svn.ffmpeg.org/ffmpeg/trunk
* segfault fixMichael Niedermayer2004-02-071-0/+6
| | | | Originally committed as revision 2764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux2003-11-031-5/+5
| | | | Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud