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
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Replace many includes of libavutil/common.h with what is actually neededMåns Rullgård
This reduces the number of false dependencies on header files and speeds up compilation. Originally committed as revision 22407 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Remove DECLARE_ALIGNED_{8,16} macrosMåns Rullgård
These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead. Originally committed as revision 22233 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-06Move DECLARE_ALIGNED_{8,16} macros to mem.hMåns Rullgård
These macros naturally belong next to the generic DECLARE_ALIGNED macro. Originally committed as revision 22230 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-22DECLARE_ALIGNED macro for TMS470 compilerMåns Rullgård
This compiler supports gcc-style alignment attributes for struct, but not for global variables. For the latter, alignment can be specified with a pragma, which does not work for struct members or local variables. By using both pragma and attribute, one or the other will always take effect. Unfortunately, no means exists for aligning stack variables. Originally committed as revision 21379 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-21Make DECLARE_ALIGNED macros work with external array specifiersMåns Rullgård
The macro implementation might need the name of the variable being declared for compiler-specific syntax. Moving array specifiers outside the macro invocation allows this to work. Originally committed as revision 21363 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-01Remove residual use of the doxygen markup which is deprecated,Stefano Sabatini
consistent with r19122. Originally committed as revision 20989 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Move DECLARE_ALIGNED and DECLARE_ASM_CONST back from lavu/internal.h toRamiro Polla
lavu/mem.h. Originally committed as revision 19384 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-27Icc 11.1 does not support attributes force_align_arg_pointer, alloc_size and ↵Carl Eugen Hoyos
cold. Originally committed as revision 19282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-06Remove '\p', '\c' and '\e' doxygen markup from doxy, as it shouldStefano Sabatini
improve plain text doxy readability. See the thread: "[RFC] Should we use doxygen markup?". Originally committed as revision 19122 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-28spelling/grammar/consistency review part IDiego Biurrun
Originally committed as revision 16840 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-24Directly #include a bunch of indirectly #included headers.Diego Biurrun
Originally committed as revision 16748 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
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-10-02Allow using DECLARE_ALIGNED with Sun cc.Carl Eugen Hoyos
Originally committed as revision 15509 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-06-05alloc_size attribute is new to gcc 4.3; don't use it with lesser versionsMåns Rullgård
Originally committed as revision 13665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-04Fix embarassing __GNU__ vs. __GNUC__ typo in preprocessor condition.Rafaël Carré
patch by Rafaël Carré, funman videolan org Originally committed as revision 13652 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-19Cosmetic change: remove the whitespace after 'defined'Zuxy Meng
Originally committed as revision 12501 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-19'malloc' attribute isn't supported in old gcc.Zuxy Meng
Originally committed as revision 12500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-19Apply "alloc_size" attribute to av_alloc, av_realloc and av_malloczZuxy Meng
Originally committed as revision 12499 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-08#error in case we do not know how to provide alignment.Diego Biurrun
Originally committed as revision 12382 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Fix MSVC identification, patch by Eddie Pang.Eddie Pang
Originally committed as revision 12218 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25Make code C conformant.Michael Niedermayer
Originally committed as revision 12217 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-25cosmetics: prettyprintDiego Biurrun
Originally committed as revision 12213 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-2010l: Correctly use preprocessor conditionals.Eddie Pang
patch by Eddie Pang, eddpang gmail com Originally committed as revision 12159 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13Add fallback for DECLARE_ALIGNED and DECLARE_ASM_CONST.Diego Biurrun
Originally committed as revision 11919 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13Mark MSVC compiler macros as such.Diego Biurrun
Originally committed as revision 11918 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-13Disentangle nested preprocessor directives.Diego Biurrun
Originally committed as revision 11917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-09Allow compilation with icc 10.1.Carl Eugen Hoyos
Originally committed as revision 11889 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-27Add and use DECLARE_ASM_CONST for constants used in assembler code.Reimar Döffinger
Should make it easier to work around compilation problems with e.g. ICC. Originally committed as revision 11641 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-02Doxyfication, patch by Stefano Sabatini %stefano P sabatini-lala A poste P it%Stefano Sabatini
Originally committed as revision 10906 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-11-01doxy/cosmetics fixes. Patch by Stefano Sabatini %stefano P sabatini-lala A ↵Stefano Sabatini
posteP it % Originally committed as revision 10893 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-17Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-10-16misc Doxygen spelling/grammar fixesDiego Biurrun
Originally committed as revision 10754 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-09-09Document libavutil/mem.h:av_strdup.Stefano Sabatini
patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 10456 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-12Move the memory related functions out of common.h into their own header filePanagiotis Issaris
mem.h. Originally committed as revision 8342 to svn://svn.ffmpeg.org/ffmpeg/trunk