| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove extern C declarations for C++. | Diego Biurrun | 2007-05-16 | 1 | -8/+0 |
* | correct last element inited check | Michael Niedermayer | 2007-05-13 | 1 | -1/+1 |
* | Proper fix for r8963 | Jindřich Makovička | 2007-05-10 | 1 | -17/+17 |
* | add AV_[RW][BL]64 support | Ivo van Poorten | 2007-05-07 | 1 | -0/+54 |
* | reduce number of shifts | Michael Niedermayer | 2007-05-04 | 1 | -4/+5 |
* | simplify | Michael Niedermayer | 2007-05-04 | 1 | -3/+2 |
* | add missing include of bswap.h | Attila Kinali | 2007-04-27 | 1 | -0/+1 |
* | Mark code parts that cannot work on AMD64 due to broken relocations as such. | Diego Biurrun | 2007-04-27 | 1 | -0/+4 |
* | reorder bswap functions into bit-depth, special-casing inside the functions. | Ramiro Polla | 2007-04-26 | 1 | -65/+14 |
* | make 2 functions "return x;" to simplify next patch | Ramiro Polla | 2007-04-26 | 1 | -2/+4 |
* | "fast unaligned" bytestream functions | Ramiro Polla | 2007-04-25 | 1 | -0/+32 |
* | Faster 32 bit byteswaping code for Blackfin. | Marc Hoffman | 2007-04-24 | 1 | -0/+12 |
* | cosmetics: Reorder endianness macros by bit depth, alignment prettyprinting. | Diego Biurrun | 2007-04-24 | 1 | -28/+29 |
* | Move ebx_available and ebp_available from CONFIG_LIST to HAVE_LIST, | Diego Biurrun | 2007-04-24 | 1 | -1/+1 |
* | remove possibly broken wince cruft | Alex Beregszaszi | 2007-04-20 | 1 | -5/+0 |
* | Add first and second output to earlyclobbers in COPY3_IF_LT macro. | Ramiro Polla | 2007-04-03 | 1 | -1/+1 |
* | Fix compilation when using the --disable-opts parameter. This to help those | Panagiotis Issaris | 2007-03-29 | 1 | -0/+4 |
* | prevent exit missuse | Michael Niedermayer | 2007-03-27 | 1 | -0/+1 |
* | expose av_base64_decode and av_base64_encode | Luca Barbato | 2007-03-19 | 4 | -9/+9 |
* | 160 bytes smaller object file, ask gcc devels why | Michael Niedermayer | 2007-03-14 | 1 | -5/+6 |
* | explain where the T table comes from | Michael Niedermayer | 2007-03-14 | 1 | -1/+1 |
* | kill 3 more av_mallocz_static() | Michael Niedermayer | 2007-03-14 | 2 | -0/+14 |
* | cosmetic (order context variables like in sha1) | Michael Niedermayer | 2007-03-13 | 1 | -1/+1 |
* | s/context/ctx/ | Michael Niedermayer | 2007-03-13 | 1 | -29/+29 |
* | #undef printf under #ifdef TEST (needed for testing) | Michael Niedermayer | 2007-03-13 | 1 | -0/+1 |
* | borrow finalization algo from sha1 (100byte smaller) | Michael Niedermayer | 2007-03-13 | 1 | -14/+6 |
* | get rid of b_used variable (same size with CONFIG_SMALL) | Michael Niedermayer | 2007-03-13 | 1 | -10/+10 |
* | smaller av_sha1_update() | Michael Niedermayer | 2007-03-13 | 1 | -0/+10 |
* | use CONFIG_SMALL | Michael Niedermayer | 2007-03-13 | 1 | -3/+1 |
* | put state[5] last so no padding is needed on arch where uint64_t needs 8byte ... | Michael Niedermayer | 2007-03-13 | 1 | -1/+1 |
* | cosmetic | Michael Niedermayer | 2007-03-13 | 1 | -2/+1 |
* | dont memcpy() simpler and same speed | Michael Niedermayer | 2007-03-13 | 1 | -3/+1 |
* | simplify | Michael Niedermayer | 2007-03-13 | 1 | -9/+5 |
* | remove middle variant (keep fastest and smallest) | Michael Niedermayer | 2007-03-13 | 1 | -40/+1 |
* | 10l | Michael Niedermayer | 2007-03-13 | 1 | -0/+1 |
* | double ;; | Michael Niedermayer | 2007-03-13 | 1 | -1/+1 |
* | factorize VARIANT2 (smaller and slower) | Michael Niedermayer | 2007-03-13 | 1 | -26/+9 |
* | revert 2% speed loss change (r8360) | Michael Niedermayer | 2007-03-13 | 1 | -6/+15 |
* | zero byte idea by rich | Michael Niedermayer | 2007-03-13 | 1 | -1/+1 |
* | 2 other variants of how to implement the core part | Michael Niedermayer | 2007-03-13 | 1 | -4/+79 |
* | cosmetic cleanup | Michael Niedermayer | 2007-03-12 | 1 | -6/+4 |
* | cosmetic cleanup | Michael Niedermayer | 2007-03-12 | 1 | -5/+1 |
* | 10% smaller object file, 2% slower | Michael Niedermayer | 2007-03-12 | 1 | -6/+8 |
* | very slightly smaller object file | Michael Niedermayer | 2007-03-12 | 1 | -3/+2 |
* | make count count bytes not bits (this is simpler and leads to a very slightly... | Michael Niedermayer | 2007-03-12 | 1 | -4/+4 |
* | remove bigger and slower code | Michael Niedermayer | 2007-03-12 | 1 | -23/+2 |
* | dont recommand testing with -O3 | Michael Niedermayer | 2007-03-12 | 1 | -1/+1 |
* | avoid silly ring buffer logic (faster with -O2, -O3 is always slower then -O2) | Michael Niedermayer | 2007-03-12 | 1 | -2/+2 |
* | its faster to copy the data to the stack it seems ... | Michael Niedermayer | 2007-03-12 | 1 | -1/+4 |
* | explain how to test it | Michael Niedermayer | 2007-03-12 | 1 | -0/+2 |