summaryrefslogtreecommitdiffstats
path: root/libavcodec/lcldec.c
Commit message (Expand)AuthorAgeFilesLines
* cosmetics: Align codec declarationsMartin Storsjö2012-04-061-2/+2
* lcl: return negative error codes on decode_init() errors.Ronald S. Bultje2012-03-011-7/+7
* lcl: error out if uncompressed input buffer is smaller than framesize.Ronald S. Bultje2012-02-241-1/+22
* lcl: don't overwrite input memory.Ronald S. Bultje2012-02-231-3/+8
* lavc: use designated initialisers for all codecs.Anton Khirnov2011-07-291-18/+16
* doxygen: Consistently use '@' instead of '\' for Doxygen markup.Diego Biurrun2011-06-241-7/+7
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-191-4/+4
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-261-2/+2
* Move #ifdef before zlib_decomp() up so it covers the Doxygen comments.Diego Biurrun2010-07-021-1/+1
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-2/+2
* Remove unnecessary calls to avcodec_check_dimensions, the check is alreadyReimar Döffinger2009-10-131-4/+0
* add #if CONFIG_ZLIB_DECODER around zlib_decomp function.Reimar Döffinger2009-05-311-0/+2
* mszh decompression: add a special case for an all-0 mask, i.e. 32 uncompressedReimar Döffinger2009-05-311-0/+7
* lcldec: ensure that the offset for av_memcpy_backptr is valid.Reimar Döffinger2009-05-311-0/+1
* Fix memleak due to c->decomp_buf never being freed.Reimar Döffinger2009-05-311-0/+2
* Only call inflateEnd when we were actually using the zlib code.Reimar Döffinger2009-05-311-1/+2
* avctx->priv_data is initialized to 0, get rid of useless extra initialization.Reimar Döffinger2009-05-311-7/+0
* Merge variable declaration and initialization.Reimar Döffinger2009-05-311-3/+2
* Use int-size types instead of char where it makes no difference.Reimar Döffinger2009-05-311-2/+2
* Take advantage of available input padding to optimize mszh_decompReimar Döffinger2009-05-311-8/+7
* Change maskbit variable to contain (1 << maskbit)Reimar Döffinger2009-05-311-2/+3
* Remove check that thanks to padding is no longer necessary.Reimar Döffinger2009-05-311-2/+0
* 100l, the compression field in lcl extradata must be interpreted asReimar Döffinger2009-05-311-1/+1
* One more use for FFMIN.Reimar Döffinger2009-05-311-3/+1
* Pad the decompression buffer and use av_memcpy_backptr for the mszh decompres...Reimar Döffinger2009-05-311-5/+5
* Mark srcptr as const in mszh_decompReimar Döffinger2009-05-311-2/+2
* Remove unnecessary put_bits/get_bits includes.Reimar Döffinger2009-05-311-1/+0
* Use bytestream_get_le16 to simplify offset/count calculation for mszh decompr...Reimar Döffinger2009-05-311-4/+3
* Remove useless & 0x1fReimar Döffinger2009-05-311-1/+1
* Document padding requirements of mszh_decomp srcptr bufferReimar Döffinger2009-05-311-0/+3
* Use srcptr_end variable to avoid having to update both srcptr and srclen.Reimar Döffinger2009-05-311-4/+2
* Change buffer size checks to avoid the undefined overflow case.Reimar Döffinger2009-05-311-2/+2
* Simply use memcpy instead of AV_RN32/AV_WN32 combination.Reimar Döffinger2009-05-311-1/+1
* Fix decoding of multithread-encoded lcl files on big-endian.Reimar Döffinger2009-05-311-4/+4
* Remove another useless ()Reimar Döffinger2009-05-311-1/+1
* Correct calculation of compressed input length.Reimar Döffinger2009-05-311-2/+2
* Add sanity check for mthread_inlen, avoids crashes due to invalid reads.Reimar Döffinger2009-05-311-0/+2
* Use FFMINReimar Döffinger2009-05-311-4/+2
* Factor out zlib decompression code to avoid massive code duplication,Reimar Döffinger2009-05-311-55/+40
* Use FFALIGNReimar Döffinger2009-05-311-1/+1
* Move variable into block where it is used, avoiding a unused variableReimar Döffinger2009-05-311-1/+1
* Make lcldec less annoyingly verbose, move messages from AV_LOG_INFO to AV_LOG...Reimar Döffinger2009-05-311-15/+15
* Get rid of unreachable code: avctx->codec_id == CODEC_ID_ZLIB is not possibleReimar Döffinger2009-05-311-15/+6
* lcldec.c: change #if CONFIG_ZLIB to #if CONFIG_ZLIB_DECODER.Reimar Döffinger2009-05-311-8/+8
* Get rid of extradata casts, it already has the right uint8_t * typeReimar Döffinger2009-05-311-5/+5
* Make lcldec produce YUV output when the input file is coded like that, insteadReimar Döffinger2009-05-311-103/+59
* Use memcpy instead of per-pixel copy loop for rgb lcl formatReimar Döffinger2009-05-301-6/+2
* Remove useless () from lcldec for more consistency with "normal" FFmpeg codin...Reimar Döffinger2009-05-301-30/+30
* Use av_clip_uint8 instead of equivalent but unoptimzed code,Reimar Döffinger2009-05-291-5/+1
OpenPOWER on IntegriCloud