Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-03-21When warning about forbidden pseudo random number generation functions,Diego Biurrun
suggest the correct replacement functions. Originally committed as revision 18114 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06ARM: disable inline asm for armccMåns Rullgård
Originally committed as revision 17831 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-21Correct, portable definition of INT_BITMåns Rullgård
Originally committed as revision 17480 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2009-01-30Add required header mem.h, av_malloc and friends are used.Diego Biurrun
Originally committed as revision 16863 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-30cosmetics: Move all #includes together at the beginning of the file.Diego Biurrun
Originally committed as revision 16862 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-29spelling/grammar/consistency review part IIIDiego Biurrun
Originally committed as revision 16849 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-29spelling/grammar/consistency review part IIDiego Biurrun
Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-28spelling/grammar/consistency review part IDiego Biurrun
Originally committed as revision 16840 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26Disambiguate the macros used to disable fprintf/printf/puts functions.Diego Biurrun
Originally committed as revision 16790 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-26Add required limits.h header.Diego Biurrun
Originally committed as revision 16789 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-25Restore _MSC_VER case in DECLARE_ALIGNED/DECLARE_ASM_CONST macro declaration.Diego Biurrun
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
2009-01-25Drop _MSC_VER case from macro declaration.Diego Biurrun
This compiler will never see our internal headers. Originally committed as revision 16783 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-25Move DECLARE_ALIGNED and DECLARE_ASM_CONST to internal.h.Diego Biurrun
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
2009-01-25Remove redundant av_log2_16bit forward declaration, fixes checkheaders warning:Diego Biurrun
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
2009-01-19Replace calls to the deprecated function av_init_random() withStefano Sabatini
corresponding calls to av_random_init(). Originally committed as revision 16682 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-16move NULL_IF_CONFIG_SMALL() definition into internal headerAurelien Jacobs
Originally committed as revision 16619 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-16move timer related code in a new timer.h fileAurelien Jacobs
Originally committed as revision 16618 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-12Add truncf() replacement function.Michael Kostylev
Patch by Michael Kostylev <mik at it-1 dot ru> Originally committed as revision 16555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-11Drop unnecessary intreadwrite.h and bswap.h #includes.Diego Biurrun
Originally committed as revision 16546 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-22Silence the following icc warnings:Carl Eugen Hoyos
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
2008-12-20Use AV_GCC_VERSION_AT_LEAST() to simplify gcc version checks.Carl Eugen Hoyos
Originally committed as revision 16246 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-17ARM: make FASTDIV() an inline functionMåns Rullgård
Originally committed as revision 16193 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-17ARM: replace "armv4l" with "arm"Måns Rullgård
Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-25ARM: faster ARMv6 FASTDIV()Måns Rullgård
Originally committed as revision 15712 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-10-16Convert asm keyword into __asm__.Diego Pettenò
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
2008-09-06Remove wrong and unnecessary condition. VHOOK filters are not specialStefano Sabatini
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
2008-08-31Globally rename the header inclusion guard names.Stefano Sabatini
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
2008-08-15Remove hackish support for fastmemcpy from MPlayer.Diego Biurrun
Originally committed as revision 14764 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-08-13move M_PI definition along with other math definitionsAurelien Jacobs
Originally committed as revision 14727 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-31fix ARMv6 FASTDIV for divisor <=2Måns Rullgård
Originally committed as revision 14481 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-30USE_FASTMEMCPY is now called CONFIG_FASTMEMCPY in MPlayer.Diego Biurrun
Originally committed as revision 14475 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-24Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun
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
2008-07-15ARM: ARMv6 optimised FASTDIVMåns Rullgård
Originally committed as revision 14242 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-07-05Only define AltiVec vector syntax macro when AltiVec is enabled.Peter Ross
patch by Peter Ross, pross xvid org Originally committed as revision 14073 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-30Implement a proper configure test for AltiVec vector declaration syntax.Diego Biurrun
Originally committed as revision 13555 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22Split MANGLE macro into LOCAL_MANGLE AND EXTERN_PREFIX partsAlexander Strange
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
2008-03-19Reapply r12489: Add pure, const and malloc attributes to proper functionsZuxy Meng
in libavutil. Fix a compilation failure in r12489. Originally committed as revision 12498 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-18revert r12489.Benoit Fouet
Originally committed as revision 12490 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-18Pure, const and malloc attributes to libavutil.Zuxy Meng
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
2008-03-18check for prefix on extern symbols in configureMåns Rullgård
Originally committed as revision 12484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-17cosmetics: indentationDiego Biurrun
Originally committed as revision 12471 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-17Simplify MANGLE macro preprocessor condition checks.Diego Biurrun
Originally committed as revision 12470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-17Fix MANGLE macro on Mac OS X.İsmail Dönmez
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
2008-03-13Add #include "config.h" to headers that need it.Diego Biurrun
Originally committed as revision 12431 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-28Use cltd instead of cdq asm mnemonic, ICC and gcc support both, butReimar Döffinger
SunStudio 12 only supports the former. Originally committed as revision 12275 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-21Faster ff_sqrt()Michael Niedermayer
Originally committed as revision 11586 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-17Disallow puts(), av_log() should be used instead.Diego Biurrun
Originally committed as revision 11548 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-12-27Check for the presence of llrint(), lrint(), round() and roundf()Michael Kostylev
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