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
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
2009-05-31Move variable into block where it is used, avoiding a unused variableReimar Döffinger
2009-05-31Make lcldec less annoyingly verbose, move messages from AV_LOG_INFO to AV_LOG...Reimar Döffinger
2009-05-31Get rid of unreachable code: avctx->codec_id == CODEC_ID_ZLIB is not possibleReimar Döffinger
2009-05-31lcldec.c: change #if CONFIG_ZLIB to #if CONFIG_ZLIB_DECODER.Reimar Döffinger
2009-05-31Get rid of extradata casts, it already has the right uint8_t * typeReimar Döffinger
2009-05-31Make lcldec produce YUV output when the input file is coded like that, insteadReimar Döffinger
2009-05-30Use memcpy instead of per-pixel copy loop for rgb lcl formatReimar Döffinger
2009-05-30Remove useless () from lcldec for more consistency with "normal" FFmpeg codin...Reimar Döffinger
2009-05-30Use av_clip_uint8 instead of equivalent but unoptimzed code,Reimar Döffinger
2009-05-27Use AV_R/WN32 instead of direct integer copying.Jeff Downs
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
2009-01-27Fix filenames in Doxygen comments.Diego Biurrun
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
2008-06-13Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini
2008-04-28Add long names to AVCodec declarations.Stefano Sabatini
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
2008-02-20Remove duplicate ;Reimar Döffinger
2008-02-01constsMichael Niedermayer
2007-07-13indentMåns Rullgård