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-11-05postprocess.c: filter name needs to be double 0 terminatedPiotr Kaczuba
Signed-off-by: Reinhard Tartler <siretart@tauware.de> (cherry picked from commit f4f3300c09bb13eb7922e60888b55e3e0fb325e7) (cherry picked from commit 20ca827019a72bfacb38e73d0b8590e651818272) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
2011-11-05Replace strncpy() with av_strlcpy() in libpostproc.Alex Converse
(cherry picked from commit 1a5e4fd8c5b99478b4e08a69261930bb12aa948b) Conflicts: ffmpeg.c libavcodec/ac3enc.c libavcodec/ass.c libavformat/movenc.c libavformat/mp3enc.c libavutil/log.c
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-01-03Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andStefano Sabatini
XXX_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-11-18Add functions to return library license and library configuration.Diego Biurrun
Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-23Move ALIGN macro to libavutil/common.h and use it in various placesDavid Conrad
Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-09configure: Add --enable-runtime-cpudetectRamiro Polla
Originally committed as revision 18380 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-25HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.Diego Biurrun
Originally committed as revision 16787 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-19Remove pointless malloc.h #include.Diego Biurrun
Originally committed as revision 16238 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11Drop _t from typedef names for POSIX compatibility.Diego Biurrun
Originally committed as revision 16062 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-11Do not set COMPILE_C if AltiVec is enabled without runtime CPU detection.Diego Biurrun
Gets rid of the following warning: postprocess_template.c:3271: warning: ‘postProcess_C’ defined but not used Originally committed as revision 16055 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-01Implement postproc_version().Stefano Sabatini
Originally committed as revision 15148 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-05-09Use full path for #includes from another directory.Diego Biurrun
Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22typo fixes: tempBlured --> tempBlurredDiego Biurrun
Originally committed as revision 12557 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22cosmetics: typo fixesDiego Biurrun
Originally committed as revision 12554 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-22cosmetics: Fix indentation to be 4 spaces and consistently place {}.Diego Biurrun
Originally committed as revision 12552 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-19Remove redundant ARCH_POWERPC #ifdef around HAVE_ALTIVEC.Diego Biurrun
Originally committed as revision 12495 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-15typo fixesDiego Biurrun
Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-15typosDiego Biurrun
Originally committed as revision 12443 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-03-13typo fixesDiego Biurrun
Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-02-03constMichael Niedermayer
Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-30Missed a variable in postprocess.c that should use DECLARE_ASM_CONST as wellReimar Döffinger
Originally committed as revision 11670 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-30Simplify: use DECLARE_ASM_CONSTReimar Döffinger
Originally committed as revision 11669 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Make MMX vectors constants.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11488 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Make pp_help a constant array of characters to move it to .rodata.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11487 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-10Reduce the size of the replaceTable entries.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11486 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-09Remove clip_table as it is not used anymore.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò (flameeyes gmail com) Originally committed as revision 11468 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-07Make the av_class member of PPContext a poiner to constant AVClass.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11445 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-04Make pp_help a constant pointer to constant characters, moves it partiallyDiego Pettenò
in .rodata (the actual string) and partially in .data.relro (the pointer), but doesn't change ABI. Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com Originally committed as revision 11390 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-03Make pp_get_mode_by_name_and_quality accept a constant string.Diego Pettenò
Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com Originally committed as revision 11381 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-01-03Make filterDelimiters and optionDelimiters two static constant array ofDiego Pettenò
characters, should move them to .rodata. Patch by Diego 'Flameeyes' Pettenò flameeyes § gmail dot com Originally committed as revision 11380 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-07-06Remove mangle.h, it is just a duplicate of parts of libavutil/internal.h.Diego Biurrun
Originally committed as revision 9500 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-06-12misc spelling fixesDiego Biurrun
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-28Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun
Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
2007-05-17Use DECLARE_ALIGNED for alignment in libpostprocessReimar Döffinger
Originally committed as revision 9043 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-11-01Use common define for x86_32 and x86_64.Diego Biurrun
Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-16Fix #endif comments.Diego Biurrun
Originally committed as revision 6709 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-12Rename ABS macro to FFABS.Diego Biurrun
Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-12Rename SIGN macro to FFSIGN to avoid clashes with system headers.Diego Biurrun
Originally committed as revision 6665 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-11printf --> av_log with some help from OdedDiego Biurrun
Originally committed as revision 6639 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-10Change libpostproc to use the FFMIN/FFMAX macros from libavutil.Diego Biurrun
Originally committed as revision 6622 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-10Move sign macro to libavutil.Diego Biurrun
Originally committed as revision 6620 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-10Use ABS macro from libavutil.Diego Biurrun
Originally committed as revision 6619 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-10Remove gcc-workaround that is already present in libavutil/common.h.Diego Biurrun
Originally committed as revision 6614 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-10Fix default license header.Diego Biurrun
Originally committed as revision 6613 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun
and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk