summaryrefslogtreecommitdiff
path: root/libavutil
Commit message (Collapse)AuthorAge
* 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
* Drop deprecated av_fifo_write function with the next libavutil version bump.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16782 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.Diego Biurrun2009-01-25
| | | | | | | | Their definition depends on preprocessor directives from config.h, thus they cannot be declared in a public header since public headers cannot #include config.h. Originally committed as revision 16781 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not #include common.h without necessity.Diego Biurrun2009-01-25
| | | | | | | This eliminates the need to work around common.h overriding certain system functions which are required in this header. Originally committed as revision 16776 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant av_log2_16bit forward declaration, fixes checkheaders warning:Diego Biurrun2009-01-25
| | | | | | | libavutil/internal.h:167: warning: redundant redeclaration of `av_log2_16bit' libavutil/common.h:143: warning: previous definition of `av_log2_16bit' was here Originally committed as revision 16773 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move internal.h #include to the end of the file so that it is afterDiego Biurrun2009-01-25
| | | | | | the declaration of av_log2_16bit, which it uses. Originally committed as revision 16772 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly #include a bunch of indirectly #included headers.Diego Biurrun2009-01-24
| | | | Originally committed as revision 16748 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid unused variable warning when compiling DES test program.Diego Biurrun2009-01-21
| | | | Originally committed as revision 16715 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make base64 test program compilable as a standard test program.Diego Biurrun2009-01-21
| | | | Originally committed as revision 16713 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add void keyword to parameterless function declaration.Diego Biurrun2009-01-21
| | | | Originally committed as revision 16712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VDPAU hardware accelerated decoding for WMV3 and VC1 which canNVIDIA Corporation2009-01-20
| | | | | | | | be used by video players. Original patch by NVIDIA corporation. Originally committed as revision 16699 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop the deprecated av_init_random() at the next libavutil major bump.Stefano Sabatini2009-01-18
| | | | Originally committed as revision 16683 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace calls to the deprecated function av_init_random() withStefano Sabatini2009-01-18
| | | | | | corresponding calls to av_random_init(). Originally committed as revision 16682 to svn://svn.ffmpeg.org/ffmpeg/trunk
* moves mid_pred() into mathops.h (with arch specific code split by directory)Aurelien Jacobs2009-01-18
| | | | Originally committed as revision 16681 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Deprecate av_init_random() in favour of av_random_init(), with a more naturalStefano Sabatini2009-01-18
| | | | | | name and order of parameters. Originally committed as revision 16679 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove ff_get_fourcc() and use AV_RL32() insteadAurelien Jacobs2009-01-17
| | | | Originally committed as revision 16654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* export gcd function as av_gcd()Aurelien Jacobs2009-01-17
| | | | Originally committed as revision 16653 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VDPAU hardware accelerated decoding for MPEG1 and MPEG2 which canNVIDIA Corporation2009-01-16
| | | | | | | | be used by video players. Original patch by NVIDIA corporation. Originally committed as revision 16628 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move NULL_IF_CONFIG_SMALL() definition into internal headerAurelien Jacobs2009-01-15
| | | | Originally committed as revision 16619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move timer related code in a new timer.h fileAurelien Jacobs2009-01-15
| | | | Originally committed as revision 16618 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add the necessary include for LIBAV*_VERSION_*Aurelien Jacobs2009-01-13
| | | | Originally committed as revision 16571 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Extend 'checkheaders' target to architecture-specific subdirectories.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16559 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add truncf() replacement function.Michael Kostylev2009-01-11
| | | | | | Patch by Michael Kostylev <mik at it-1 dot ru> Originally committed as revision 16555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary, remove unnecessary #includes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop unnecessary intreadwrite.h and bswap.h #includes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use posix_memalign() if available.Ramiro Polla2009-01-07
| | | | Originally committed as revision 16488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing 'void' keyword to parameterless function declarations.Diego Biurrun2009-01-05
| | | | Originally committed as revision 16436 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add VDPAU hardware accelerated decoding for H264 which can be used byNVIDIA Corporation2009-01-04
| | | | | | | | video players. Original patch by NVIDIA corporation. Originally committed as revision 16431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetic: indentAurelien Jacobs2009-01-04
| | | | Originally committed as revision 16423 to svn://svn.ffmpeg.org/ffmpeg/trunk