summaryrefslogtreecommitdiff
path: root/libavcodec/mdec.c
Commit message (Collapse)AuthorAge
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
|
* cosmetics: Align codec declarationsMartin Storsjö2012-04-06
| | | | | | | Also break some long lines, remove codec function placeholder comments and add spaces in sample/pixel format lists. Signed-off-by: Martin Storsjö <martin@martin.st>
* Remove unnecessary AVFrame pointer casts.Diego Biurrun2012-03-01
|
* dsputil: Add ff_ prefix to the dsputil*_init* functionsMartin Storsjö2012-02-15
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* cosmetics: Remove extra newlines at EOFAlex Converse2012-01-27
|
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
| | | | It's more readable and less prone to breakage.
* mdec: enable frame-level multithreading.Alexander Strange2011-05-18
| | | | Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
* mdec.c: fix overread.Ronald S. Bultje2011-05-18
|
* Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini2011-05-02
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Make PSX MDEC decoder output YUVJ420 and always use IDCT_SIMPLE. ThisVitor Sessak2011-01-02
| | | | | | makes the output much closer to original Playstation hardware. Originally committed as revision 26196 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård2010-03-06
| | | | | | | These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Release buffer when the codec is closed.Reimar Döffinger2010-01-23
| | | | Originally committed as revision 21405 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use qstride = 0 and allocate only a single line for qscale_table sinceReimar Döffinger2010-01-23
| | | | | | for this codecs all quants are the same for a single frame. Originally committed as revision 21404 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård2010-01-22
| | | | Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mdec: remove unused members from struct MDECContextMåns Rullgård2009-08-25
| | | | Originally committed as revision 19705 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a av_fast_malloc function and replace several uses of av_fast_realloc,Reimar Döffinger2009-04-12
| | | | | | thus avoiding potential memleaks and pointless memcpys. Originally committed as revision 18470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | 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
* 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
* Rename ff_init_vlcs function to the more descriptive name ff_mpeg12_init_vlcs.Diego Biurrun2008-08-20
| | | | | | Now that it is exported, this should avoid confusion and name clashes. Originally committed as revision 14867 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: comment spelling/grammar fixesDiego Biurrun2008-08-20
| | | | Originally committed as revision 14866 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Untangle mpeg12.c and mdec.c so that mdec.c can be compiled separately.Diego Biurrun2008-08-19
| | | | Originally committed as revision 14851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless AVFrame* casting.Alexander Strange2008-06-27
| | | | Originally committed as revision 14011 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove duplicate emms.Alexander Strange2008-06-27
| | | | Originally committed as revision 14010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove commented-out code.Alexander Strange2008-06-27
| | | | Originally committed as revision 14009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Export qscale so that postprocessing works.Alexander Strange2008-06-27
| | | | Originally committed as revision 14008 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused PutBitContext.Alexander Strange2008-06-27
| | | | Originally committed as revision 14007 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add codec long name, patch by Stefano Sabatini, stefano.sabatini-lala poste it.Stefano Sabatini2008-05-14
| | | | Originally committed as revision 13154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Increase alignment for DCT block arrays from 8 to 16Alexander Strange2008-04-08
| | | | | | Patch by Alexander Strange ( astrange ithinksw com ) Originally committed as revision 12767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs2008-03-09
| | | | Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11710 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix missing chroma in version 3 STR.Alexander Strange2007-12-05
| | | | | | | Closes issue 290 Patch by Alexander Strange: astrange ithinksw com Originally committed as revision 11170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Group all copyright and author notices together.Diego Biurrun2007-07-05
| | | | Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add proper ff_ prefix to new extern symbolsAurelien Jacobs2007-07-05
| | | | Originally committed as revision 9479 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
* 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
* warning fixes by Luca Abeni, lucabe72 ##@## email ##.## itDiego Biurrun2006-01-25
| | | | Originally committed as revision 4898 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: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set pix_fmtMichael Niedermayer2005-08-13
| | | | Originally committed as revision 4518 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid UPDATE_CACHE() in GET_RL_VLC() if not neededMichael Niedermayer2005-04-18
| | | | Originally committed as revision 4137 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
* lowres width/height cleanup 3rd tryMichael Niedermayer2004-09-27
| | | | Originally committed as revision 3522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more data_size=0 cleanupMichael Niedermayer2004-05-21
| | | | Originally committed as revision 3147 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