summaryrefslogtreecommitdiff
path: root/libavutil
Commit message (Collapse)AuthorAge
* Add VA API pixel formats.Gwenole Beauchesne2009-02-27
| | | | | | Patch by Gwenole Beauchesne. Originally committed as revision 17634 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Compact repeated messages to "Last message repeated x times".Michael Niedermayer2009-02-22
| | | | Originally committed as revision 17531 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split avutil.h, move all the pixel format definitions to the newStefano Sabatini2009-02-22
| | | | | | dedicated file pixfmt.h. Originally committed as revision 17528 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add note about big vs. little endian.Michael Niedermayer2009-02-22
| | | | Originally committed as revision 17525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add PIX_FMT_RGB48BE and PIX_FMT_RGB48LE.Peter Ross2009-02-22
| | | | Originally committed as revision 17510 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid warnings from AV_GCC_VERSION_AT_LEAST with some non-gcc compilersMåns Rullgård2009-02-22
| | | | Originally committed as revision 17508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check return value of posix_memalign and explicitly set pointer to NULL if itPatrik Kullman2009-02-21
| | | | | | fails, patch by Patrik Kullman, patrik yes nu. Originally committed as revision 17495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correct, portable definition of INT_BITMåns Rullgård2009-02-21
| | | | Originally committed as revision 17480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reference to renamed header file xvmc_render.h.Diego Biurrun2009-02-12
| | | | Originally committed as revision 17171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence one icc warning:Carl Eugen Hoyos2009-02-10
| | | | | | variable "..." is used before its value is set Originally committed as revision 17127 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_GCC_VERSION_AT_LEAST instead of complicated __GNUC__ version check.Diego Biurrun2009-02-10
| | | | Originally committed as revision 17114 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_flatten to make the similarly named attribute available.Michael Niedermayer2009-02-09
| | | | Originally committed as revision 17105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* av_uninit() to suppress false uninitialized warnings from gcc without ↵Michael Niedermayer2009-02-09
| | | | | | deoptimizing code. Originally committed as revision 17104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Document the av_base64_encode/decode functions.Stefano Sabatini2009-02-08
| | | | | | | See the thread: "[PATCH] Improve documentation for libavutil/base64.h". Originally committed as revision 17074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: "* out" -> "*out" for consistency with the otherStefano Sabatini2009-02-08
| | | | | | parameters. Originally committed as revision 17072 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: rename the "size" parameter of av_base64_encode() to "in_size".Stefano Sabatini2009-02-08
| | | | Originally committed as revision 17071 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: prefer out/in over buf/src for the parameter names ofStefano Sabatini2009-02-08
| | | | | | av_base64_encode(), for consistency/readability reasons. Originally committed as revision 17069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: consistently prefer "size" over "len"/"length" for theStefano Sabatini2009-02-08
| | | | | | variable names. Originally committed as revision 17067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make av_base64_encode() do not require the user to provide anStefano Sabatini2009-02-08
| | | | | | | | | overallocated buffer where to put the encoded string. See the thread: "[PATCH] Improve documentation for libavutil/base64.h". Originally committed as revision 17065 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add a new test program for base64, based on that removed in r17024.Stefano Sabatini2009-02-06
| | | | | | | See the thread: "[PATCH] remove unused and broken test program in libavutil/base64.c". Originally committed as revision 17025 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove broken test program.Stefano Sabatini2009-02-06
| | | | Originally committed as revision 17024 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ensure that the palette is set in data[1] for all 8bit formats.Michael Niedermayer2009-02-06
| | | | | | Also document it. Originally committed as revision 17018 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l, don't run tests twice, this was some forgotten debugging code.Reimar Döffinger2009-02-03
| | | | Originally committed as revision 16975 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a bug in 3DEC CBC decryption and add more extensive tests based onReimar Döffinger2009-02-03
| | | | | | the official test vectors. Originally committed as revision 16974 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update DES test code to use the new public API.Reimar Döffinger2009-02-03
| | | | Originally committed as revision 16972 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for 3DES to DES moduleReimar Döffinger2009-02-03
| | | | Originally committed as revision 16971 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add and use a public API for RC4 and DES, analogous to the AES API.Reimar Döffinger2009-02-03
| | | | Originally committed as revision 16970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary header for LIBAVUTIL_VERSION_MAJOR, fixes the warning:Diego Biurrun2009-02-02
| | | | | | libavutil/lzo.c:235:5: warning: "LIBAVUTIL_VERSION_MAJOR" is not defined Originally committed as revision 16962 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Documentation for LZO error return value flagsReimar Döffinger2009-02-02
| | | | Originally committed as revision 16950 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move doxygen documentation from lzo.c to lzo.hReimar Döffinger2009-02-02
| | | | Originally committed as revision 16949 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to LZO stuff and thus make it officially part of the public API.Reimar Döffinger2009-02-02
| | | | | | Keep lzo1x_decode until the next major version bump for binary compatibility. Originally committed as revision 16946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Use 'num' instead of 'nom' as abbreviation for numerator.Diego Biurrun2009-02-01
| | | | Originally committed as revision 16910 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required header mem.h, av_malloc and friends are used.Diego Biurrun2009-01-30
| | | | Originally committed as revision 16863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Move all #includes together at the beginning of the file.Diego Biurrun2009-01-30
| | | | Originally committed as revision 16862 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename string.c to avstring.c so that the name of header and C file match.Diego Biurrun2009-01-29
| | | | Originally committed as revision 16853 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IIIDiego Biurrun2009-01-28
| | | | Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IIDiego Biurrun2009-01-28
| | | | Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add "const" to AES function arguments where possible without generatingReimar Döffinger2009-01-28
| | | | | | more warnings. Originally committed as revision 16847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add common.h #include, necessary for av_const.Diego Biurrun2009-01-28
| | | | Originally committed as revision 16844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spelling/grammar/consistency review part IDiego Biurrun2009-01-28
| | | | Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a ff_gcd() function again, for compatibility with old libavcodecAurelien Jacobs2009-01-27
| | | | Originally committed as revision 16814 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove misleading comment about how to build SHA1 test program.Diego Biurrun2009-01-26
| | | | | | Generating the test program is integrated into the build system already. Originally committed as revision 16804 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorganize header #includes: Unconditionally #include standard C headers,Diego Biurrun2009-01-25
| | | | | | group all local #includes together. Originally committed as revision 16796 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: Add #undefs for system free/malloc/realloc, which must be used here.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16794 to svn://svn.ffmpeg.org/ffmpeg/trunk
* C files should #include the header files of the same name.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16792 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disambiguate the macros used to disable fprintf/printf/puts functions.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16790 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add required limits.h header.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16789 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration.Diego Biurrun2009-01-25
| | | | | | | This compiler might be supported in the future or we might some day decide to export these macros. Originally committed as revision 16786 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop _MSC_VER case from macro declaration.Diego Biurrun2009-01-25
| | | | | | This compiler will never see our internal headers. Originally committed as revision 16783 to svn://svn.ffmpeg.org/ffmpeg/trunk