aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
Commit message (Expand)AuthorAgeFilesLines
* install opt.hNico Sabbi2006-08-291-1/+1
* slightly faster deblockLoren Merritt2006-08-291-14/+22
* use the A32_BITSTREAM_READER by default on ARM (faster)Aurelien Jacobs2006-08-281-0/+4
* force usage of ALT_BITSTREAM_READER where neededAurelien Jacobs2006-08-283-5/+6
* move some functions to bitstream.h to avoid conflictsAurelien Jacobs2006-08-282-40/+35
* fix buffer handlingMichael Niedermayer2006-08-281-14/+23
* Minimal support for the new pixel formats in libavcodecLuca Abeni2006-08-281-0/+139
* mmx implementation of deblocking strength decision.Loren Merritt2006-08-285-10/+216
* overread AV_LOG_ERROR -> AV_LOG_DEBUGMichael Niedermayer2006-08-271-1/+1
* fix low bitrate mp3Michael Niedermayer2006-08-271-6/+17
* tweak cabac. 0.5% faster h264.Loren Merritt2006-08-271-10/+12
* check the validity of the amount of the remaining bytes in the bitsteam befor...Michael Niedermayer2006-08-271-1/+4
* unused varMichael Niedermayer2006-08-261-3/+0
* dont copy frame if the whole mp1/2/3 frame is available in one piece in the i...Michael Niedermayer2006-08-261-6/+15
* Fix A32_BITSTREAM_READER compilation on x86Aurelien Jacobs2006-08-261-1/+1
* make mpa_decode_header() 10 times fasterMichael Niedermayer2006-08-261-1/+0
* another silly typo which surprisingly neither valgrind nor cmp of the file ou...Michael Niedermayer2006-08-261-1/+1
* 10l found by valgrindMichael Niedermayer2006-08-261-0/+1
* remove duplicated parser, people who pass random gibblets of the bitstream in...Michael Niedermayer2006-08-261-223/+123
* 2nd try of skip_bits_long() for the ALT readerMichael Niedermayer2006-08-261-20/+14
* make A32 reader align its ptr during init no matter what missaligned mess is ...Michael Niedermayer2006-08-261-8/+4
* 3rd try :)Michael Niedermayer2006-08-261-1/+1
* 2nd try for a skip_bits_long() for the A32 readerMichael Niedermayer2006-08-261-7/+2
* move align_get_bits() to .h to avoid conflicts between different bitstream re...Michael Niedermayer2006-08-262-7/+27
* prevent bitstream reader to be overridenMichael Niedermayer2006-08-261-1/+2
* avoid branchMichael Niedermayer2006-08-251-28/+24
* move variable declarations so that their scope is smallerMichael Niedermayer2006-08-251-2/+5
* move the +400 out of the innermost loopMichael Niedermayer2006-08-251-11/+12
* avoid reading exponent twiceMichael Niedermayer2006-08-251-7/+11
* reduce size of vlc table, thats slightly faster hereMichael Niedermayer2006-08-251-2/+2
* try to avoid l3_unscale() by using a tableMichael Niedermayer2006-08-251-4/+25
* replace l3_unscale(1, exponents[pos]) by LUTMichael Niedermayer2006-08-251-1/+7
* maybe fixing the segfault on ARMMichael Niedermayer2006-08-251-2/+2
* cook shouldn't try to enforce the bitstream reader typeAurelien Jacobs2006-08-241-1/+0
* add codec id and tag for JPEG 2000Baptiste Coudurier2006-08-241-0/+1
* 10l typoMichael Niedermayer2006-08-241-1/+1
* avoid a few if(x==0) checks in the inner loopsMichael Niedermayer2006-08-241-10/+30
* fix non ALT bitstream readerMichael Niedermayer2006-08-241-1/+1
* optimize reorder_block() though this function seems to be executed too rarely...Michael Niedermayer2006-08-241-8/+9
* simplifyMichael Niedermayer2006-08-241-4/+1
* dont copy the whole GetBitContext aroundMichael Niedermayer2006-08-241-5/+6
* faster handling of zero coeffs in the low freq decodeMichael Niedermayer2006-08-241-0/+8
* optimizing high freq decodeMichael Niedermayer2006-08-241-14/+14
* use memset() instead of slow c loopsMichael Niedermayer2006-08-241-10/+11
* simplifyMichael Niedermayer2006-08-231-24/+17
* fix arm asm compilation in mpegaudiodecAurelien Jacobs2006-08-231-4/+4
* Alignment of the LT window, segfault fix patch by Baptiste Coudurier.Baptiste Coudurier2006-08-221-1/+1
* MUL* for ARM code based on a patch by Siarhei SiamashkaMichael Niedermayer2006-08-221-0/+11
* replace MULL with asm too, no significnat speedup but its probably better to ...Michael Niedermayer2006-08-221-1/+7
* replacing MULH by asm for x86Michael Niedermayer2006-08-221-13/+15