summaryrefslogtreecommitdiffstats
path: root/libpostproc
Commit message (Collapse)AuthorAgeFilesLines
* Place some START_TIMER invocations in separate blocks.Diego Biurrun2012-01-041-2/+3
| | | | | | This fixes compilation failures related to START_TIMER/STOP_TIMER macros and -Werror=declaration-after-statement. START_TIMER declares variables and thus may not be placed after statements outside of a new block.
* Fix a bunch of typos.Diego Biurrun2012-01-021-2/+2
|
* postproc: altivec: fix remaining mixed declarations and codeMans Rullgard2011-12-211-16/+14
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* postproc: altivec: untemplate some variable namesMans Rullgard2011-12-211-123/+113
| | | | | | | These variables are now in separate scopes and thus do not need unique names. Signed-off-by: Mans Rullgard <mans@mansr.com>
* postproc: altivec: fix trivial cases of mixed declarations and codeMans Rullgard2011-12-212-59/+67
| | | | | | | | This moves declarations without initialisers or with constant initialisers to the start of a block, and adds do {} while(0) around some macros, thus allowing declarations within them. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: move inclusion of subdir.mak to main subdir loopMans Rullgard2011-12-131-2/+0
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* doxygen: misc consistency, spelling and wording fixesDiego Biurrun2011-12-122-5/+6
|
* Fix a bunch of common typos.Diego Biurrun2011-12-112-2/+2
|
* doxygen: eliminate Qt-style doxygen syntaxDiego Biurrun2011-12-051-2/+2
|
* postprocess.c: filter name needs to be double 0 terminatedPiotr Kaczuba2011-08-261-2/+3
| | | | Signed-off-by: Reinhard Tartler <siretart@tauware.de>
* libpostproc: Remove disabled code.Diego Biurrun2011-07-061-32/+0
|
* Do not include log.h in avutil.hMans Rullgard2011-07-031-0/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: include sub-makefiles using full path instead of symlinksMans Rullgard2011-06-281-1/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun2011-06-251-2/+0
| | | | | Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
* cosmetics: trim trailing whitespace in postprocAlex Converse2011-05-081-1/+0
|
* Replace strncpy() with av_strlcpy().Alex Converse2011-05-031-1/+2
|
* libpostproc: Remove crufty code disabled by the big bump.Diego Biurrun2011-04-202-10/+0
|
* Bump major versions of all libraries.Anton Khirnov2011-04-181-2/+2
| | | | | | They've accumulated enough new APIs and corresponding deprecated cruft. This breaks API and ABI.
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-195-20/+20
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* get rid of the last svn mentionsJanne Grunau2011-03-181-1/+1
|
* use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*Janne Grunau2011-03-161-1/+1
|
* replace FFMPEG with LIBAV in FFMPEG_CONFIGURATIONJanne Grunau2011-03-161-1/+1
| | | | also update the multiple inclusion guards in config.h|mak
* consolidate .gitignore patters into a single fileJanne Grunau2011-01-181-6/+0
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* convert svn:ignore properties to .gitignore filesJanne Grunau2011-01-171-0/+6
| | | | Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
* Fix use of uninitialized data: A array element can not beReimar Döffinger2010-07-241-2/+3
| | | | | | used to initialized another array element of the same array. Originally committed as revision 24479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-302-12/+12
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-204-4/+4
| | | | | | | | 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
* Fix warnings about redefining constants when compiling libpostproc.Yuriy Kaminskiy2010-02-021-0/+3
| | | | | | Patch by Yuriy Kaminskiy, yumkam mail ru Originally committed as revision 21607 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move array specifiers outside DECLARE_ALIGNED() invocationsMåns Rullgård2010-01-223-9/+9
| | | | Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add symbol versioning for shared librariesMåns Rullgård2010-01-161-0/+4
| | | | | | Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() andStefano Sabatini2010-01-032-4/+4
| | | | | | XXX_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add functions to return library license and library configuration.Diego Biurrun2009-11-182-0/+21
| | | | Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove disabled code cruft.Diego Biurrun2009-08-191-104/+0
| | | | Originally committed as revision 19668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move ALIGN macro to libavutil/common.h and use it in various placesDavid Conrad2009-05-221-1/+1
| | | | Originally committed as revision 18898 to svn://svn.ffmpeg.org/ffmpeg/trunk
* configure: Add --enable-runtime-cpudetectRamiro Polla2009-04-081-7/+7
| | | | Originally committed as revision 18380 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_uninit to vbA[1-8], vbB[1-8] variables to work aroundDiego Biurrun2009-03-141-2/+2
| | | | | | some 'may be used uninitialized' warnings. Originally committed as revision 17963 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use directory name as multiple inclusion guard prefix.Diego Biurrun2009-02-042-6/+6
| | | | | | We do this for all other libraries already. Originally committed as revision 16990 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-014-4/+4
| | | | | | | 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
* HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.Diego Biurrun2009-01-252-43/+43
| | | | Originally committed as revision 16787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly #include some required headers.Diego Biurrun2009-01-251-0/+1
| | | | Originally committed as revision 16780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation.Carl Eugen Hoyos2009-01-141-1/+1
| | | | Originally committed as revision 16592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-132-106/+111
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove pointless malloc.h #include.Diego Biurrun2008-12-191-3/+0
| | | | Originally committed as revision 16238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add backwards-compatibility typedef for removed _t names under appropriateDiego Biurrun2008-12-111-0/+2
| | | | | | version #ifdef since otherwise public API is broken. Originally committed as revision 16064 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Drop _t from typedef names for POSIX compatibility.Diego Biurrun2008-12-112-13/+13
| | | | Originally committed as revision 16062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not set COMPILE_C if AltiVec is enabled without runtime CPU detection.Diego Biurrun2008-12-111-1/+1
| | | | | | | 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
* Replace long with x86_reg in postprocess_template.c like in all otherReimar Döffinger2008-11-021-31/+31
| | | | | | x86 assembler code files, just libpostprocess was forgotten. Originally committed as revision 15767 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Convert asm keyword into __asm__.Diego Pettenò2008-10-162-36/+36
| | | | | | | | | | | | | 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
* Implement postproc_version().Stefano Sabatini2008-09-012-1/+11
| | | | Originally committed as revision 15148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-312-6/+6
| | | | | | | | | 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
OpenPOWER on IntegriCloud