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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-10-04cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun
2013-03-08lavc decoders: work with refcounted frames.Anton Khirnov
2013-01-14lcldec: return meaningful error codes.Anton Khirnov
2012-12-05lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov
2012-12-05lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov
2012-10-25avutil: Move memcpy_backptr() to mem.cDiego Biurrun
2012-10-23av_memcpy_backptr: Drop no longer necessary malloc paddingDiego Biurrun
2012-10-08Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-04-06cosmetics: Align codec declarationsMartin Storsjö
2012-03-01lcl: return negative error codes on decode_init() errors.Ronald S. Bultje
2012-02-24lcl: error out if uncompressed input buffer is smaller than framesize.Ronald S. Bultje
2012-02-23lcl: don't overwrite input memory.Ronald S. Bultje
2011-07-29lavc: use designated initialisers for all codecs.Anton Khirnov
2011-06-24doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
2011-01-26Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò
2010-07-02Move #ifdef before zlib_decomp() up so it covers the Doxygen comments.Diego Biurrun
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
2010-03-31Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini
2009-10-14Remove unnecessary calls to avcodec_check_dimensions, the check is alreadyReimar Döffinger
2009-05-31add #if CONFIG_ZLIB_DECODER around zlib_decomp function.Reimar Döffinger
2009-05-31mszh decompression: add a special case for an all-0 mask, i.e. 32 uncompressedReimar Döffinger
2009-05-31lcldec: ensure that the offset for av_memcpy_backptr is valid.Reimar Döffinger
2009-05-31Fix memleak due to c->decomp_buf never being freed.Reimar Döffinger
2009-05-31Only call inflateEnd when we were actually using the zlib code.Reimar Döffinger
2009-05-31avctx->priv_data is initialized to 0, get rid of useless extra initialization.Reimar Döffinger
2009-05-31Merge variable declaration and initialization.Reimar Döffinger
2009-05-31Use int-size types instead of char where it makes no difference.Reimar Döffinger
2009-05-31Take advantage of available input padding to optimize mszh_decompReimar Döffinger
2009-05-31Change maskbit variable to contain (1 << maskbit)Reimar Döffinger
2009-05-31Remove check that thanks to padding is no longer necessary.Reimar Döffinger
2009-05-31100l, the compression field in lcl extradata must be interpreted asReimar Döffinger
2009-05-31One more use for FFMIN.Reimar Döffinger
2009-05-31Pad the decompression buffer and use av_memcpy_backptr for the mszh decompres...Reimar Döffinger
2009-05-31Mark srcptr as const in mszh_decompReimar Döffinger
2009-05-31Remove unnecessary put_bits/get_bits includes.Reimar Döffinger
2009-05-31Use bytestream_get_le16 to simplify offset/count calculation for mszh decompr...Reimar Döffinger
2009-05-31Remove useless & 0x1fReimar Döffinger
2009-05-31Document padding requirements of mszh_decomp srcptr bufferReimar Döffinger
2009-05-31Use srcptr_end variable to avoid having to update both srcptr and srclen.Reimar Döffinger
2009-05-31Change buffer size checks to avoid the undefined overflow case.Reimar Döffinger
2009-05-31Simply use memcpy instead of AV_RN32/AV_WN32 combination.Reimar Döffinger
2009-05-31Fix decoding of multithread-encoded lcl files on big-endian.Reimar Döffinger
2009-05-31Remove another useless ()Reimar Döffinger
2009-05-31Correct calculation of compressed input length.Reimar Döffinger
2009-05-31Add sanity check for mthread_inlen, avoids crashes due to invalid reads.Reimar Döffinger
2009-05-31Use FFMINReimar Döffinger
2009-05-31Factor out zlib decompression code to avoid massive code duplication,Reimar Döffinger
2009-05-31Use FFALIGNReimar Döffinger