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
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-21Port read_time() that works on x86_32 and 64 from noe.Michael Niedermayer
Originally committed as revision 15661 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-10-15Add a macro to get the number of elements in a table.Benoit Fouet
Originally committed as revision 15619 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-07-13Add av_clipf() function to common.h and use it in ra288.cVitor Sessak
Originally committed as revision 14213 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-08Make START/STOP_TIMER not require -v 2.Michael Niedermayer
Originally committed as revision 13711 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-06-01Macro suggested by Michael which will be used to disable theStefano Sabatini
definition of long_name strings in libavcodec and libavformat. Patch by: Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13595 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-26add FFMIN3Baptiste Coudurier
Originally committed as revision 12982 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-19Implement FFMAX3(a,b,c) - maximum over three arguments.Vladimir Voroshilov
Originally committed as revision 12910 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-04-18cosmetics: __asm__ __volatile__ --> asm volatileDiego Biurrun
Originally committed as revision 12885 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-21Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng
Originally committed as revision 12525 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-10misc spelling fixesDiego Biurrun
Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-15prettyprinting cosmeticsDiego Biurrun
Originally committed as revision 11941 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-01Merge declaration and initialization.Michael Niedermayer
Originally committed as revision 11701 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-08-12add a new av_clip_int16() function to libavutilAurelien Jacobs
Originally committed as revision 10076 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-12ensure av_noinline is always definedAurelien Jacobs
Originally committed as revision 10075 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-08-09 * Making [START|STOP]_TIMER work on architectures that support gethrtime()Roman Shaposhnik
Originally committed as revision 9998 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-13Blackfin - read_time primitiveMarc Hoffman
note this primitive currently uses a union to concatenate 2x32bit registers because of poor compiler support around DImode and asm. Originally committed as revision 9302 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc typo fixesDiego Biurrun
Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-30rename attribute_unused to av_unused and moves its declaration to common.hCarl Eugen Hoyos
patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM Originally committed as revision 9155 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
2007-03-09Fix typo in Doxygen comments.Panagiotis Issaris
Originally committed as revision 8307 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move unaltered av_freep() comments to the header file.Panagiotis Issaris
Originally committed as revision 8253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move unaltered av_free() comments to the header file.Panagiotis Issaris
Originally committed as revision 8252 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move unaltered av_realloc() comments to the header file.Panagiotis Issaris
Originally committed as revision 8251 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-03-05Move unaltered av_malloc() comments to the header file.Panagiotis Issaris
Originally committed as revision 8250 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25remove [U]INT64_C definitionMåns Rullgård
Originally committed as revision 8127 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-25Add av_ prefix to clip functionsReimar Döffinger
Originally committed as revision 8122 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-17av_noinlineMichael Niedermayer
Originally committed as revision 7992 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-13This fixes error handling for BeOS, removing the need for some ifdefs.François Revol
AVERROR_ defines are moved to avcodec.h as they are needed in there as well. Feel free to move that to avutil/common.h. Bumped up avcodec/format version numbers as though it's binary compatible we will want to rebuild apps as error values changed. Please from now on use return AVERROR(EFOO) instead of the ugly return -EFOO in your code. This also removes the need for berrno.h. Originally committed as revision 7965 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-02-12slightly improve *_TIMERMichael Niedermayer
Originally committed as revision 7948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-01-13Avoid "HAVE_CMOV not defined" warning.Christophe Mutricy
patch by Christophe Mutricy, xtophe nxtelevision com Originally committed as revision 7443 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-08rename always_inline to av_always_inline and move to common.hMåns Rullgård
Originally committed as revision 7256 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-07merge #ifdef HAVE_AV_CONFIG_H sectionsMåns Rullgård
Originally committed as revision 7254 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-07fix mingw shared build, and get rid of FF_IMPORT_ATTRMåns Rullgård
Originally committed as revision 7253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-07use the standard INT64_C() macro for 64-bit constantsMåns Rullgård
Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-07move more macros to internal.hMåns Rullgård
Originally committed as revision 7239 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-07move some __attribute__ macros to internal.hMåns Rullgård
Originally committed as revision 7238 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-06remove 'restrict' definition, it is always #defined in config.hMåns Rullgård
Originally committed as revision 7237 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-12-02spelling cosmetics: cliped --> clippedDiego Biurrun
Originally committed as revision 7208 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-19Correct GET/PUT_UTF8 comment: the get/put functions might be called upReimar Döffinger
to 7 times, though only up to 4 times for valid utf-8 values. Originally committed as revision 7124 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-19Fix typo in commentReimar Döffinger
Originally committed as revision 7123 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-14remove workaround for missing inttypes.hMåns Rullgård
Originally committed as revision 7068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-11-14clean up inttypes.h and int_fastxx_t types detectionMåns Rullgård
Originally committed as revision 7050 to svn://svn.ffmpeg.org/ffmpeg/trunk