100 Commits (dc3f320dfd3bb2c0345ffcf7754af3e0bee9458a)

Author SHA1 Message Date
Diego Biurrun c46e28746c Put some disabled functions that are only used in the test program in cabac.c 17 years ago
Reimar Döffinger 5db3c3bc03 Add missing const to last argument of decode_significance_8x8_x86. 17 years ago
Diego Biurrun 5b21bdabe4 Add FFMPEG_ prefix to all multiple inclusion guards. 17 years ago
Diego Biurrun 1084771ac0 10l: refill2() is not unused, it is used conditionally. 17 years ago
Diego Biurrun 0f26eec23e Disable unused code; fixes several gcc warnings: 17 years ago
Diego Biurrun b1ef3dfd2b 100l: Revert accidental commit, restore previous version. 17 years ago
Diego Biurrun eee947487b Replace CONFIG_VORBIS_DECODER #ifdef by if (ENABLE_VORBIS_DECODER). 17 years ago
Diego Biurrun 1fe2d0fd1a cosmetics: typo 17 years ago
Ramiro Polla c8f9ef613e CONFIG_7REGS -> HAVE_7REGS 17 years ago
Diego Biurrun df3a80b50a cosmetics: misc typo fixes 17 years ago
Diego Biurrun e5a389a1b7 license header consistency cosmetics 17 years ago
Diego Biurrun 755bfeabcc misc spelling fixes 18 years ago
Carl Eugen Hoyos 154e30f6c2 rename attribute_unused to av_unused and moves its declaration to common.h 18 years ago
Aurelien Jacobs 26b4fe821c split h264.c to move parser in its own file 18 years ago
Diego Biurrun 5a6a6cc7dc Fix multiple "‘inline/static’ is not at beginning of declaration" warnings. 18 years ago
Diego Biurrun e69364b700 Mark code parts that cannot work on AMD64 due to broken relocations as such. 18 years ago
Diego Biurrun 784b7f77c8 10l: Rename missed occurrences of CONFIG_EBX_AVAILABLE to HAVE_EBX_AVAILABLE. 18 years ago
Diego Biurrun f9be0cb800 Update preprocessor directive comments to take recent changes to this file 18 years ago
Panagiotis Issaris 449659919c Fix compilation when using the --disable-opts parameter. This to help those 18 years ago
Aurelien Jacobs f0b23422fa use av_noinline instead of __attribute((noinline)) 18 years ago
Måns Rullgård 7073e9fc69 rename CMOV_IS_FAST to HAVE_FAST_CMOV and simplify configure 18 years ago
Michael Niedermayer 3b6dc9ca6d replace a few hardcoded numbers with their correct named ones 18 years ago
Måns Rullgård 849f10351d rename always_inline to av_always_inline and move to common.h 18 years ago
Michael Niedermayer c61b9d4473 PIC fix 18 years ago
Reimar Döffinger d55f46e5a8 Reenable AMD64 optimizations for cabac accidentially disabled in r6852 18 years ago
Diego Biurrun 419b878494 Add ARCH_X86_32 as a new define for 32 bit x86 architectures and change 18 years ago
Diego Biurrun d5cd50ed73 Fix compilation with PIC enabled, BRANCHLESS_GET_CABAC is defined under 18 years ago
Reimar Döffinger 755073fe3c CABAC assembler optimizations ported to AMD64 18 years ago
Michael Niedermayer e08f580644 decode_significance_8x8_x86() 18 years ago
Guillaume Poirier 94e4c3a333 Protect code that uses CMOV instructions with HAVE_CMOV, 18 years ago
Michael Niedermayer 849a50041c another instruction less in decode_significance_x86() -> 1% faster ion P3 18 years ago
Michael Niedermayer d3e7c5c35b 1 instruction less 18 years ago
Michael Niedermayer a616db285a reordering instructions a little in decode_significance_x86() -> 2 instructions less / 1% faster decode_residual on P3 18 years ago
Michael Niedermayer 13404b2e98 factorize get_cabac asm (0.5% slower but its much cleaner) 18 years ago
Bernhard Rosenkränzer ba9fb5da3a Fix PIC compilation, some defines were under #ifdef !PIC but used 18 years ago
Michael Niedermayer d72bc32389 unused variable 18 years ago
Michael Niedermayer ebd624b662 optimize sign decoding code in decode_residual() 18 years ago
Jindřich Makovička a0f2c6ba38 Kill a warning with MSVC 18 years ago
Michael Niedermayer eb73bf723d x86 asm version of the decode significance loop (not 8x8) of decode_residual() 5% faster decode_residual() on P3 18 years ago
Michael Niedermayer 4041a495a8 cosmetic (%%eax->%0) 18 years ago
Diego Biurrun 8dda3e796b Fix crash with illegal instruction, cmov is available on 686 and later only. 18 years ago
Diego Biurrun e962604f1c Expand some #endif comments. 18 years ago
Michael Niedermayer 165c5f0909 fix !CMOV_IS_FAST case (iam not really happy with the fix but i didnt come up with a better one quickly) 18 years ago
Michael Niedermayer 1d7c111856 10l 18 years ago
Michael Niedermayer faff3a7ad0 this code will not work with PIC as it needs 7 registers and gcc doesnt support that in PIC 18 years ago
Michael Niedermayer f24a515931 shift CABACContext.range right, this reduces the number of shifts needed in get_cabac() and is slightly faster on P3 (and should be much faster on P4 as the P4 except the more recent variants lacks an integer shifter and so shifts have ~10 times longer latency then simple operations like adds) 18 years ago
Michael Niedermayer 68a205edef dehack *ps_state indexing in the branchless decoder 18 years ago
Michael Niedermayer 12ff5b0f3b add "memory" to the clobber list we change memory so we need it, this also fixes some problems with gcc svn 18 years ago
Michael Niedermayer 851ded8918 prevent "mb level" get_cabac() calls from being inlined (3% faster decode_mb_cabac() on P3) 18 years ago
Guillaume Poirier a0490b324a adds some useful comments after some of the #else, #elseif, 18 years ago