| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED. | Ramiro Polla | 2009-06-04 | 3 | -7/+7 |
* | cosmetics: K&R style reformatting | Diego Biurrun | 2009-06-04 | 2 | -38/+17 |
* | Use fewer macros in x86-optimized mlpdsp. | Ramiro Polla | 2009-06-03 | 1 | -19/+10 |
* | Fix sei_ct_type check so it does not mistreat ct_type= unknown. | Michael Niedermayer | 2009-06-03 | 1 | -1/+1 |
* | Print ct_type and pic_struct. | Michael Niedermayer | 2009-06-03 | 1 | -0/+3 |
* | AAC ADTS to AudioSpecificConfig bitstream filter | Alex Converse | 2009-06-03 | 3 | -0/+116 |
* | Set AV_PKT_FLAG_KEY in avcodec_decode_video. | Reimar Döffinger | 2009-06-03 | 1 | -0/+2 |
* | Add AV_PKT_FLAG_KEY and deprecate PKT_FLAG_KEY. | Reimar Döffinger | 2009-06-03 | 1 | -2/+5 |
* | Clarify the input AVPacket for avcodec_decode*() | Michael Niedermayer | 2009-06-03 | 1 | -0/+7 |
* | Check combined depth and number of components in TIFF decoder, thus eliminating | Kostya Shishkov | 2009-06-02 | 1 | -18/+15 |
* | 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 | 2 | -2/+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 |
* | Factor out zlib decompression code to avoid massive code duplication, | Reimar Döffinger | 2009-05-31 | 1 | -55/+40 |
* | Use FFALIGN | Reimar Döffinger | 2009-05-31 | 1 | -1/+1 |
* | Move variable into block where it is used, avoiding a unused variable | Reimar Döffinger | 2009-05-31 | 1 | -1/+1 |
* | Make lcldec less annoyingly verbose, move messages from AV_LOG_INFO to AV_LOG... | Reimar Döffinger | 2009-05-31 | 1 | -15/+15 |
* | Get rid of unreachable code: avctx->codec_id == CODEC_ID_ZLIB is not possible | Reimar Döffinger | 2009-05-31 | 1 | -15/+6 |
* | lcldec.c: change #if CONFIG_ZLIB to #if CONFIG_ZLIB_DECODER. | Reimar Döffinger | 2009-05-31 | 1 | -8/+8 |
* | Get rid of extradata casts, it already has the right uint8_t * type | Reimar Döffinger | 2009-05-31 | 1 | -5/+5 |
* | Make lcldec produce YUV output when the input file is coded like that, instead | Reimar Döffinger | 2009-05-31 | 1 | -103/+59 |
* | Remove now unused elements from LclEncContext | Reimar Döffinger | 2009-05-31 | 1 | -9/+0 |
* | Remove useless casts, extradata is already "uint8_t *" | Reimar Döffinger | 2009-05-31 | 1 | -8/+8 |
* | lclenc.c: compress directly into output buffer instead of using a pointless | Reimar Döffinger | 2009-05-31 | 1 | -16/+2 |
* | Remove superfluous () from lclenc.c | Reimar Döffinger | 2009-05-31 | 1 | -5/+5 |
* | Cosmetics: fix indentation in lclenc.c | Reimar Döffinger | 2009-05-31 | 1 | -5/+5 |