summaryrefslogtreecommitdiff
path: root/libavutil/internal.h
Commit message (Collapse)AuthorAge
* Correct, portable definition of INT_BITMåns Rullgård2009-02-21
| | | | Originally committed as revision 17480 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
* 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
* 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
* spelling/grammar/consistency review part IDiego Biurrun2009-01-28
| | | | Originally committed as revision 16840 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
* 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
* 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
* 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
* 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 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
* Drop unnecessary intreadwrite.h and bswap.h #includes.Diego Biurrun2009-01-11
| | | | Originally committed as revision 16546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Silence the following icc warnings:Carl Eugen Hoyos2008-12-21
| | | | | | | | warning #1292: attribute "force_align_arg_pointer" ignored warning #1292: attribute "alloc_size" ignored warning #1292: attribute "cold" ignored Originally committed as revision 16258 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use AV_GCC_VERSION_AT_LEAST() to simplify gcc version checks.Carl Eugen Hoyos2008-12-20
| | | | Originally committed as revision 16246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: make FASTDIV() an inline functionMåns Rullgård2008-12-17
| | | | Originally committed as revision 16193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: replace "armv4l" with "arm"Måns Rullgård2008-12-17
| | | | Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: faster ARMv6 FASTDIV()Måns Rullgård2008-10-25
| | | | Originally committed as revision 15712 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-16
| | | | | | | | | | | | | Neither the asm() nor the __asm__() keyword is part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 syntax. Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrong and unnecessary condition. VHOOK filters are not specialStefano Sabatini2008-09-06
| | | | | | | so they are not supposed to use the printf, fprintf, perror and puts functions but av_log instead. Originally committed as revision 15221 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove hackish support for fastmemcpy from MPlayer.Diego Biurrun2008-08-14
| | | | Originally committed as revision 14764 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move M_PI definition along with other math definitionsAurelien Jacobs2008-08-13
| | | | Originally committed as revision 14727 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix ARMv6 FASTDIV for divisor <=2Måns Rullgård2008-07-31
| | | | Originally committed as revision 14481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.Diego Biurrun2008-07-30
| | | | Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun2008-07-24
| | | | | | | | | | The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros. Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ARM: ARMv6 optimised FASTDIVMåns Rullgård2008-07-15
| | | | Originally committed as revision 14242 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only define AltiVec vector syntax macro when AltiVec is enabled.Peter Ross2008-07-05
| | | | | | patch by Peter Ross, pross xvid org Originally committed as revision 14073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement a proper configure test for AltiVec vector declaration syntax.Diego Biurrun2008-05-30
| | | | Originally committed as revision 13555 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX partsAlexander Strange2008-03-22
| | | | | | | so that LOCAL_MANGLE can be used without EXTERN_PREFIX. patch by Alexander Strange, astrange ithinksw com Originally committed as revision 12558 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reapply r12489: Add pure, const and malloc attributes to proper functionsZuxy Meng2008-03-19
| | | | | | | in libavutil. Fix a compilation failure in r12489. Originally committed as revision 12498 to svn://svn.ffmpeg.org/ffmpeg/trunk
* revert r12489.Benoit Fouet2008-03-18
| | | | Originally committed as revision 12490 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Pure, const and malloc attributes to libavutil.Zuxy Meng2008-03-18
| | | | | | | | | Patch by Zuxy Meng: zuxy meng gmail com Original thread: [FFmpeg-devel] [PATCH] Pure, const and malloc attributes to libavutil Date: 03/18/2008 6:09 AM Originally committed as revision 12489 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check for prefix on extern symbols in configureMåns Rullgård2008-03-18
| | | | Originally committed as revision 12484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indentationDiego Biurrun2008-03-17
| | | | Originally committed as revision 12471 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify MANGLE macro preprocessor condition checks.Diego Biurrun2008-03-17
| | | | Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix MANGLE macro on Mac OS X.İsmail Dönmez2008-03-17
| | | | | | | Allows compiling a 64 bit FFmpeg on Mac OS X without using --disable-mmx. patch by İsmail Dönmez ismail namtrac org Originally committed as revision 12468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #include "config.h" to headers that need it.Diego Biurrun2008-03-13
| | | | Originally committed as revision 12431 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use cltd instead of cdq asm mnemonic, ICC and gcc support both, butReimar Döffinger2008-02-28
| | | | | | SunStudio 12 only supports the former. Originally committed as revision 12275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Faster ff_sqrt()Michael Niedermayer2008-01-21
| | | | Originally committed as revision 11586 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Disallow puts(), av_log() should be used instead.Diego Biurrun2008-01-17
| | | | Originally committed as revision 11548 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check for the presence of llrint(), lrint(), round() and roundf()Michael Kostylev2007-12-27
| | | | | | | and provide simple replacements if they are unavailable. patch by Michael Kostylev, mik niipt ru Originally committed as revision 11326 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove outdated comment.Diego Biurrun2007-12-27
| | | | Originally committed as revision 11325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* djgpp port, first partMichael Kostylev2007-12-24
| | | | | | patch by Michael Kostylev, mik niipt ru Originally committed as revision 11313 to svn://svn.ffmpeg.org/ffmpeg/trunk