summaryrefslogtreecommitdiff
path: root/libavcodec/lcldec.c
Commit message (Expand)AuthorAge
* cosmetics: Drop particularly redundant silly commentsDiego Biurrun2016-02-18
* cosmetics: Drop empty comment linesDiego Biurrun2016-02-18
* lavc: AV-prefix all codec capabilitiesVittorio Giovara2015-07-27
* cosmetics: Write NULL pointer equality checks more compactlyGabriel Dume2014-08-15
* lcl: Disentangle pointers to input data and decompression bufferDiego Biurrun2014-08-03
* cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-03
* lavc decoders: work with refcounted frames.Anton Khirnov2013-03-08
* lcldec: return meaningful error codes.Anton Khirnov2013-01-14
* lavc: fix decode_frame() third parameter semantics for video decodersAnton Khirnov2012-12-04
* lavc: add a wrapper for AVCodecContext.get_buffer().Anton Khirnov2012-12-04
* avutil: Move memcpy_backptr() to mem.cDiego Biurrun2012-10-25
* av_memcpy_backptr: Drop no longer necessary malloc paddingDiego Biurrun2012-10-23
* Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormatAnton Khirnov2012-10-08
* Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov2012-08-07
* cosmetics: Align codec declarationsMartin Storsjö2012-04-06
* lcl: return negative error codes on decode_init() errors.Ronald S. Bultje2012-03-01
* lcl: error out if uncompressed input buffer is smaller than framesize.Ronald S. Bultje2012-02-24
* lcl: don't overwrite input memory.Ronald S. Bultje2012-02-23
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-29
* doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun2011-06-24
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
* Move #ifdef before zlib_decomp() up so it covers the Doxygen comments.Diego Biurrun2010-07-02
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
* Remove unnecessary calls to avcodec_check_dimensions, the check is alreadyReimar Döffinger2009-10-13
* add #if CONFIG_ZLIB_DECODER around zlib_decomp function.Reimar Döffinger2009-05-31
* mszh decompression: add a special case for an all-0 mask, i.e. 32 uncompressedReimar Döffinger2009-05-31
* lcldec: ensure that the offset for av_memcpy_backptr is valid.Reimar Döffinger2009-05-31
* Fix memleak due to c->decomp_buf never being freed.Reimar Döffinger2009-05-31
* Only call inflateEnd when we were actually using the zlib code.Reimar Döffinger2009-05-31
* avctx->priv_data is initialized to 0, get rid of useless extra initialization.Reimar Döffinger2009-05-31
* Merge variable declaration and initialization.Reimar Döffinger2009-05-31
* Use int-size types instead of char where it makes no difference.Reimar Döffinger2009-05-31
* Take advantage of available input padding to optimize mszh_decompReimar Döffinger2009-05-31
* Change maskbit variable to contain (1 << maskbit)Reimar Döffinger2009-05-31
* Remove check that thanks to padding is no longer necessary.Reimar Döffinger2009-05-31
* 100l, the compression field in lcl extradata must be interpreted asReimar Döffinger2009-05-31
* One more use for FFMIN.Reimar Döffinger2009-05-31
* Pad the decompression buffer and use av_memcpy_backptr for the mszh decompres...Reimar Döffinger2009-05-31
* Mark srcptr as const in mszh_decompReimar Döffinger2009-05-31
* Remove unnecessary put_bits/get_bits includes.Reimar Döffinger2009-05-31
* Use bytestream_get_le16 to simplify offset/count calculation for mszh decompr...Reimar Döffinger2009-05-31
* Remove useless & 0x1fReimar Döffinger2009-05-31
* Document padding requirements of mszh_decomp srcptr bufferReimar Döffinger2009-05-31
* Use srcptr_end variable to avoid having to update both srcptr and srclen.Reimar Döffinger2009-05-31
* Change buffer size checks to avoid the undefined overflow case.Reimar Döffinger2009-05-31
* Simply use memcpy instead of AV_RN32/AV_WN32 combination.Reimar Döffinger2009-05-31
* Fix decoding of multithread-encoded lcl files on big-endian.Reimar Döffinger2009-05-31
* Remove another useless ()Reimar Döffinger2009-05-31