Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
It's more readable and less prone to breakage.
2011-05-18mdec: enable frame-level multithreading.Alexander Strange
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-05-18mdec.c: fix overread.Ronald S. Bultje
2011-05-02Replace deprecated FF_*_TYPE symbols with AV_PICTURE_TYPE_*.Stefano Sabatini
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-02Make PSX MDEC decoder output YUVJ420 and always use IDCT_SIMPLE. ThisVitor Sessak
makes the output much closer to original Playstation hardware. Originally committed as revision 26196 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
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
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård
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
2010-01-23Release buffer when the codec is closed.Reimar Döffinger
Originally committed as revision 21405 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-23Use qstride = 0 and allocate only a single line for qscale_table sinceReimar Döffinger
for this codecs all quants are the same for a single frame. Originally committed as revision 21404 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård
Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-26mdec: remove unused members from struct MDECContextMåns Rullgård
Originally committed as revision 19705 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-12Add a av_fast_malloc function and replace several uses of av_fast_realloc,Reimar Döffinger
thus avoiding potential memleaks and pointless memcpys. Originally committed as revision 18470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
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
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2008-08-20Rename ff_init_vlcs function to the more descriptive name ff_mpeg12_init_vlcs.Diego Biurrun
Now that it is exported, this should avoid confusion and name clashes. Originally committed as revision 14867 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20cosmetics: comment spelling/grammar fixesDiego Biurrun
Originally committed as revision 14866 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-20Untangle mpeg12.c and mdec.c so that mdec.c can be compiled separately.Diego Biurrun
Originally committed as revision 14851 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Remove pointless AVFrame* casting.Alexander Strange
Originally committed as revision 14011 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Remove duplicate emms.Alexander Strange
Originally committed as revision 14010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Remove commented-out code.Alexander Strange
Originally committed as revision 14009 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Export qscale so that postprocessing works.Alexander Strange
Originally committed as revision 14008 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-27Remove unused PutBitContext.Alexander Strange
Originally committed as revision 14007 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-14Add codec long name, patch by Stefano Sabatini, stefano.sabatini-lala poste it.Stefano Sabatini
Originally committed as revision 13154 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-08Increase alignment for DCT block arrays from 8 to 16Alexander Strange
Patch by Alexander Strange ( astrange ithinksw com ) Originally committed as revision 12767 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-10add FF_ prefix to all (frame)_TYPE usageAurelien Jacobs
Originally committed as revision 12399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01constMichael Niedermayer
Originally committed as revision 11710 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-05Fix missing chroma in version 3 STR.Alexander Strange
Closes issue 290 Patch by Alexander Strange: astrange ithinksw com Originally committed as revision 11170 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05Group all copyright and author notices together.Diego Biurrun
Originally committed as revision 9483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-05add proper ff_ prefix to new extern symbolsAurelien Jacobs
Originally committed as revision 9479 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-02-05MSVC-compatible __align8/__align16 declarationSteve L'Homme
patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr Originally committed as revision 4942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-26warning fixes by Luca Abeni, lucabe72 ##@## email ##.## itDiego Biurrun
Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-01-13Update licensing information: The FSF changed postal address.Diego Biurrun
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-12-17COSMETICS: Remove all trailing whitespace.Diego Biurrun
Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-08-14set pix_fmtMichael Niedermayer
Originally committed as revision 4518 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-04-19avoid UPDATE_CACHE() in GET_RL_VLC() if not neededMichael Niedermayer
Originally committed as revision 4137 to svn://svn.ffmpeg.org/ffmpeg/trunk
2005-01-23avoid buf_size == 0 checks in every decoderMichael Niedermayer
Originally committed as revision 3872 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-09-27lowres width/height cleanup 3rd tryMichael Niedermayer
Originally committed as revision 3522 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-05-21more data_size=0 cleanupMichael Niedermayer
Originally committed as revision 3147 to svn://svn.ffmpeg.org/ffmpeg/trunk
2004-04-30cleanup & memleak fixMichael Niedermayer
Originally committed as revision 3095 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-11-03av_log() patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)Michel Bardiaux
Originally committed as revision 2469 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-10-15quietMike Melanson
Originally committed as revision 2382 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-01100lMichael Niedermayer
Originally committed as revision 2193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-01more fixesMichael Niedermayer
Originally committed as revision 2192 to svn://svn.ffmpeg.org/ffmpeg/trunk
2003-09-01some fixes (still buggy though)Michael Niedermayer
Originally committed as revision 2191 to svn://svn.ffmpeg.org/ffmpeg/trunk