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