Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2007-05-11split h264.c to move parser in its own fileAurelien Jacobs
2007-05-05Fix multiple "‘inline/static’ is not at beginning of declaration" warnings.Diego Biurrun
2007-04-27Mark code parts that cannot work on AMD64 due to broken relocations as such.Diego Biurrun
2007-04-2610l: Rename missed occurrences of CONFIG_EBX_AVAILABLE to HAVE_EBX_AVAILABLE.Diego Biurrun
2007-04-14Update preprocessor directive comments to take recent changes to this fileDiego Biurrun
2007-03-29Fix compilation when using the --disable-opts parameter. This to help thosePanagiotis Issaris
2007-02-23use av_noinline instead of __attribute((noinline))Aurelien Jacobs
2007-01-27rename CMOV_IS_FAST to HAVE_FAST_CMOV and simplify configureMåns Rullgård
2007-01-13replace a few hardcoded numbers with their correct named onesMichael Niedermayer
2006-12-08rename always_inline to av_always_inline and move to common.hMåns Rullgård
2006-11-27PIC fixMichael Niedermayer
2006-11-01Reenable AMD64 optimizations for cabac accidentially disabled in r6852Reimar Döffinger
2006-11-01Add ARCH_X86_32 as a new define for 32 bit x86 architectures and changeDiego Biurrun
2006-10-29Fix compilation with PIC enabled, BRANCHLESS_GET_CABAC is defined underDiego Biurrun
2006-10-23CABAC assembler optimizations ported to AMD64Reimar Döffinger
2006-10-21decode_significance_8x8_x86()Michael Niedermayer
2006-10-20Protect code that uses CMOV instructions with HAVE_CMOV,Guillaume Poirier
2006-10-20another instruction less in decode_significance_x86() -> 1% faster ion P3Michael Niedermayer
2006-10-201 instruction lessMichael Niedermayer
2006-10-20reordering instructions a little in decode_significance_x86() -> 2 instructio...Michael Niedermayer
2006-10-20factorize get_cabac asm (0.5% slower but its much cleaner)Michael Niedermayer
2006-10-20Fix PIC compilation, some defines were under #ifdef !PIC but usedBernhard Rosenkränzer
2006-10-19unused variableMichael Niedermayer
2006-10-19optimize sign decoding code in decode_residual()Michael Niedermayer
2006-10-18Kill a warning with MSVCJindřich Makovička
2006-10-18x86 asm version of the decode significance loop (not 8x8) of decode_residual(...Michael Niedermayer
2006-10-17cosmetic (%%eax->%0)Michael Niedermayer
2006-10-17Fix crash with illegal instruction, cmov is available on 686 and later only.Diego Biurrun
2006-10-17Expand some #endif comments.Diego Biurrun
2006-10-16fix !CMOV_IS_FAST case (iam not really happy with the fix but i didnt come up...Michael Niedermayer
2006-10-1610lMichael Niedermayer
2006-10-16this code will not work with PIC as it needs 7 registers and gcc doesnt suppo...Michael Niedermayer
2006-10-16shift CABACContext.range right, this reduces the number of shifts needed in g...Michael Niedermayer
2006-10-13dehack *ps_state indexing in the branchless decoderMichael Niedermayer
2006-10-13add "memory" to the clobber list we change memory so we need it, this also fi...Michael Niedermayer
2006-10-12prevent "mb level" get_cabac() calls from being inlined (3% faster decode_mb_...Michael Niedermayer
2006-10-12adds some useful comments after some of the #else, #elseif,Guillaume Poirier
2006-10-12Rename ABS macro to FFABS.Diego Biurrun
2006-10-11slightly faster on P3 slightly slower on athlon and probably faster on P4Michael Niedermayer
2006-10-11moving lps state transition code a little up in the branched asm code (1% fas...Michael Niedermayer
2006-10-11write cabac low and range variables as early as possible to prevent stalls fr...Michael Niedermayer
2006-10-11use ecx instead of cl (no speed change on P3 but might avoid partial register...Michael Niedermayer
2006-10-11make state transition tables global as they are constant and the code is slig...Michael Niedermayer
2006-10-1110lMichael Niedermayer
2006-10-11make lps_range a global table its constant anyway (saves 1 addition for acces...Michael Niedermayer
2006-10-11enable CMOV_IS_FAST as its faster or equal speed on every cpu (duron, athlon,...Michael Niedermayer
2006-10-10BRANCHLESS_CABAD --> BRANCHLESS_CABAC_DECODERDiego Biurrun
2006-10-10moving another bit&1 out, this is as fast as with it in there, but it makes m...Michael Niedermayer
2006-10-10move the &1 out of the asm so gcc can optimize it away in inlined cases (yes ...Michael Niedermayer
2006-10-10replace a few and/sub/... by cmovMichael Niedermayer