| Commit message (Expand) | Author | Age | Files | Lines |
* | Document the av_base64_encode/decode functions. | Stefano Sabatini | 2009-02-08 | 1 | -5/+15 |
* | Cosmetics: "* out" -> "*out" for consistency with the other | Stefano Sabatini | 2009-02-08 | 2 | -2/+2 |
* | Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size". | Stefano Sabatini | 2009-02-08 | 2 | -5/+5 |
* | Cosmetics: prefer out/in over buf/src for the parameter names of | Stefano Sabatini | 2009-02-08 | 2 | -5/+5 |
* | Cosmetics: consistently prefer "size" over "len"/"length" for the | Stefano Sabatini | 2009-02-08 | 2 | -8/+8 |
* | Make av_base64_encode() do not require the user to provide an | Stefano Sabatini | 2009-02-08 | 1 | -1/+1 |
* | Add a new test program for base64, based on that removed in r17024. | Stefano Sabatini | 2009-02-06 | 2 | -1/+64 |
* | Remove broken test program. | Stefano Sabatini | 2009-02-06 | 1 | -126/+0 |
* | Ensure that the palette is set in data[1] for all 8bit formats. | Michael Niedermayer | 2009-02-06 | 1 | -0/+4 |
* | 100l, don't run tests twice, this was some forgotten debugging code. | Reimar Döffinger | 2009-02-03 | 1 | -1/+0 |
* | Fix a bug in 3DEC CBC decryption and add more extensive tests based on | Reimar Döffinger | 2009-02-03 | 1 | -1/+36 |
* | Update DES test code to use the new public API. | Reimar Döffinger | 2009-02-03 | 1 | -7/+24 |
* | Add support for 3DES to DES module | Reimar Döffinger | 2009-02-03 | 2 | -3/+15 |
* | Add and use a public API for RC4 and DES, analogous to the AES API. | Reimar Döffinger | 2009-02-03 | 4 | -19/+117 |
* | Add necessary header for LIBAVUTIL_VERSION_MAJOR, fixes the warning: | Diego Biurrun | 2009-02-02 | 1 | -0/+2 |
* | Documentation for LZO error return value flags | Reimar Döffinger | 2009-02-02 | 1 | -1/+8 |
* | Move doxygen documentation from lzo.c to lzo.h | Reimar Döffinger | 2009-02-02 | 2 | -20/+20 |
* | Add av_ prefix to LZO stuff and thus make it officially part of the public API. | Reimar Döffinger | 2009-02-02 | 2 | -18/+24 |
* | Use full internal pathname in doxygen @file directives. | Diego Biurrun | 2009-02-01 | 23 | -23/+23 |
* | cosmetics: Use 'num' instead of 'nom' as abbreviation for numerator. | Diego Biurrun | 2009-02-01 | 2 | -15/+15 |
* | Add required header mem.h, av_malloc and friends are used. | Diego Biurrun | 2009-01-30 | 1 | -0/+1 |
* | cosmetics: Move all #includes together at the beginning of the file. | Diego Biurrun | 2009-01-30 | 1 | -2/+1 |
* | Rename string.c to avstring.c so that the name of header and C file match. | Diego Biurrun | 2009-01-29 | 2 | -1/+1 |
* | spelling/grammar/consistency review part III | Diego Biurrun | 2009-01-28 | 9 | -28/+30 |
* | spelling/grammar/consistency review part II | Diego Biurrun | 2009-01-28 | 11 | -42/+43 |
* | Add "const" to AES function arguments where possible without generating | Reimar Döffinger | 2009-01-28 | 2 | -8/+8 |
* | Add common.h #include, necessary for av_const. | Diego Biurrun | 2009-01-28 | 1 | -0/+1 |
* | spelling/grammar/consistency review part I | Diego Biurrun | 2009-01-28 | 27 | -178/+175 |
* | add a ff_gcd() function again, for compatibility with old libavcodec | Aurelien Jacobs | 2009-01-27 | 1 | -0/+7 |
* | Remove misleading comment about how to build SHA1 test program. | Diego Biurrun | 2009-01-26 | 1 | -2/+0 |
* | Reorganize header #includes: Unconditionally #include standard C headers, | Diego Biurrun | 2009-01-25 | 1 | -15/+10 |
* | 10l: Add #undefs for system free/malloc/realloc, which must be used here. | Diego Biurrun | 2009-01-25 | 1 | -0/+5 |
* | C files should #include the header files of the same name. | Diego Biurrun | 2009-01-25 | 2 | -0/+3 |
* | Disambiguate the macros used to disable fprintf/printf/puts functions. | Diego Biurrun | 2009-01-25 | 1 | -3/+3 |
* | Add required limits.h header. | Diego Biurrun | 2009-01-25 | 1 | -0/+1 |
* | Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration. | Diego Biurrun | 2009-01-25 | 1 | -0/+3 |
* | Drop _MSC_VER case from macro declaration. | Diego Biurrun | 2009-01-25 | 1 | -3/+0 |
* | Drop deprecated av_fifo_write function with the next libavutil version bump. | Diego Biurrun | 2009-01-25 | 2 | -0/+4 |
* | Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h. | Diego Biurrun | 2009-01-25 | 2 | -17/+17 |
* | Do not #include common.h without necessity. | Diego Biurrun | 2009-01-25 | 1 | -6/+0 |
* | Remove redundant av_log2_16bit forward declaration, fixes checkheaders warning: | Diego Biurrun | 2009-01-25 | 1 | -2/+0 |
* | Move internal.h #include to the end of the file so that it is after | Diego Biurrun | 2009-01-25 | 1 | -4/+4 |
* | Directly #include a bunch of indirectly #included headers. | Diego Biurrun | 2009-01-24 | 4 | -0/+6 |
* | Avoid unused variable warning when compiling DES test program. | Diego Biurrun | 2009-01-21 | 1 | -1/+4 |
* | Make base64 test program compilable as a standard test program. | Diego Biurrun | 2009-01-21 | 1 | -5/+4 |
* | Add void keyword to parameterless function declaration. | Diego Biurrun | 2009-01-21 | 1 | -1/+1 |
* | Add VDPAU hardware accelerated decoding for WMV3 and VC1 which can | NVIDIA Corporation | 2009-01-20 | 1 | -0/+2 |
* | cosmetics: Remove pointless period after copyright statement non-sentences. | Diego Biurrun | 2009-01-19 | 3 | -3/+3 |
* | Drop the deprecated av_init_random() at the next libavutil major bump. | Stefano Sabatini | 2009-01-18 | 2 | -0/+5 |
* | Replace calls to the deprecated function av_init_random() with | Stefano Sabatini | 2009-01-18 | 2 | -2/+2 |