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
2011-12-13doxygen: misc consistency, spelling and wording fixesDiego Biurrun
2011-11-06avutil: Don't allow using strcasecmp/strncasecmpReimar Döffinger
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-06-08Move metadata API from lavf to lavu.Anton Khirnov
Rename it to AVDictionary, since it will be used as such. Tags documentation and metadata conversion API is lavf-specific, so remains there.
2011-06-05Remove unnecessary LIBAVFORMAT_BUILD #ifdef.Diego Biurrun
2011-05-24Move emms_c() from libavcodec to libavutil.Ronald S. Bultje
2011-05-08Ban strncpy() it's too easy to misuse.Alex Converse
2011-03-23Remove unnecessary icc version checksMans Rullgard
With unknown attribute warnings disabled, these checks are no longer needed. Removing them improves readability while having no effect on generated code. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-09Frame-based multithreading framework using pthreadsAlexander Strange
See doc/multithreading.txt for details on use in codecs. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-01-31Rename attribute_used to av_used and move it to attributes.hMans Rullgard
This is consistent with most of the other attribute macros. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-30Replace dprintf with av_dlogLuca Barbato
dprintf clashes with POSIX.1-2008
2010-11-10Intel C compiler 12.0 does not suport these attributes: may_alias, ↵Carl Eugen Hoyos
force_align_arg_pointer and alloc_size. Originally committed as revision 25716 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-17Use attribute force_align_arg_pointer only on x86_32.Carl Eugen Hoyos
Originally committed as revision 24290 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-01Improve FF_SYMVER documentationMåns Rullgård
Originally committed as revision 23911 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-30Fix grammar errors in documentationMåns Rullgård
Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-16Document FF_SYMVER and attribute_usedMichael Niedermayer
Originally committed as revision 23622 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-15Fix symbol version compat wrappers on systems with export prefixesMåns Rullgård
Originally committed as revision 23615 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-15Add compatibility wrappers for functions moved from lavf to lavcMåns Rullgård
When symbol versioning is enabled, moving symbols from one library to another breaks binary compatibility. This adds wrappers with the old version tag for the av_*packet functions recently moved to lavc. Originally committed as revision 23611 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13av_alias is an attribute and belongs to attributes.hMichael Niedermayer
also attributes.h is public and external api and can thus not depend on configure tested compiler support thus this part is removed. A different solution must be found if this breaks for some compiler which i hope it does not. Originally committed as revision 23115 to svn://svn.ffmpeg.org/ffmpeg/trunk
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-09Move libm replacements to new header libm.hMåns Rullgård
ffmpeg.c uses lrintf(), which is missing on some systems. Previously it picked up the replacement via libavutil/internal.h due to HAVE_AV_CONFIG_H being erroneously defined. Moving these replacements to a separate header enables ffmpeg.c to use them without being exposed to internal interfaces. This use of a non-public header is justified by the header in question not being part of the internal interface either. It should rather be considered as part of the build system, which is shared between the libraries and the applications. This header cannot be installed since the tested conditions depend on the compiler. Originally committed as revision 22399 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-09Move ff_sqrt() to libavutil/intmath.hMåns Rullgård
Originally committed as revision 22345 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-20Add casts to correct return type in macros for missing libm funcsMåns Rullgård
Originally committed as revision 21922 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-20Gcc attribute may_alias is not supported (or silently ignored) by all ↵Carl Eugen Hoyos
supported compilers. Originally committed as revision 21917 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-02-10Define missing llrint() as macro instead of inline functionMåns Rullgård
This fixes building on some broken systems. Originally committed as revision 21735 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-29Define av_alias if supported by compilerMåns Rullgård
Originally committed as revision 21523 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-20Move COPY3_IF_LT to lavc/mathops.hMåns Rullgård
This obscure macro is only used in motion_est.c so having it in lavc makes more sense. See discussion here: http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2008-November/056561.html Originally committed as revision 21346 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-20Move FASTDIV macro to intmath.hMåns Rullgård
Originally committed as revision 21335 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16Use macros instead of inline functions to replace the following missing C99Vitor Sessak
functions: exp2, exp2f, log2, log2f. Should fix compilation in systems where these functions are defined in math.h but not implemented. Originally committed as revision 21231 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-12Add replacements for log2f(), exp2() and exp2f() for platforms that lacks it.Vitor Sessak
Should fix build breakage on some platforms introduced in r21125. Originally committed as revision 21155 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-10Remove code checking for __PIC__ or __pic__ and setting PIC from ↵Reimar Döffinger
libavutil/internal.h, configure is supposed to take care of that already. Originally committed as revision 20498 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21extend ff_inverse[], and fix its documentationLoren Merritt
Originally committed as revision 19942 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla
parameters. Originally committed as revision 19776 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-04Add a newline in error message in CHECKED_ALLOC(Z).Ramiro Polla
Originally committed as revision 19758 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-01whitespace cosmetics, prettyprintingDiego Biurrun
Originally committed as revision 19751 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-30Add CHECKED_ALLOC macro.Ramiro Polla
It works the same as CHECKED_ALLOCZ except that it does not zero the allocated memory. Originally committed as revision 19742 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-10Add a log2 replacement for systems that haven't quite caught up with the C99Alex Converse
standard library. Originally committed as revision 19395 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-07-09Do not throw compiler error if asm code needs alignment, but we do not knowRamiro Polla
how to do it for this compiler. This removes a dependency of config.h on the DECLARE_* macros. Originally committed as revision 19383 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-05-25Add LABEL_MANGLE() to export label symbols from inside asm blocks.Ramiro Polla
Originally committed as revision 18934 to svn://svn.ffmpeg.org/ffmpeg/trunk
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