summaryrefslogtreecommitdiff
path: root/libpostproc
Commit message (Collapse)AuthorAge
* Use directory name as multiple inclusion guard prefix.Diego Biurrun2009-02-04
| | | | | | 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-01
| | | | | | | 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-25
| | | | Originally committed as revision 16787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Directly #include some required headers.Diego Biurrun2009-01-25
| | | | Originally committed as revision 16780 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation.Carl Eugen Hoyos2009-01-14
| | | | Originally committed as revision 16592 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | 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-19
| | | | Originally committed as revision 16238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add backwards-compatibility typedef for removed _t names under appropriateDiego Biurrun2008-12-11
| | | | | | 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-11
| | | | 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-11
| | | | | | | 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-02
| | | | | | 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-16
| | | | | | | | | | | | | 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-01
| | | | Originally committed as revision 15148 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | 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
* Remove AltiVec vector declaration compiler compatibility macros.Diego Biurrun2008-07-24
| | | | | | | | | | The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros. Originally committed as revision 14366 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-recursive makefilesMåns Rullgård2008-04-07
| | | | Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: prettyprintingDiego Biurrun2008-03-23
| | | | Originally committed as revision 12566 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent and whitespacesLuca Barbato2008-03-23
| | | | Originally committed as revision 12565 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declarations after statements from doVertDefFilter_altivecLuca Barbato2008-03-23
| | | | Originally committed as revision 12563 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declarations after statements from doVertLowPass_altivecLuca Barbato2008-03-23
| | | | Originally committed as revision 12562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove declarations after statements from vertClassify_altivecLuca Barbato2008-03-23
| | | | Originally committed as revision 12561 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reorder declarations in vertClassify_altivecLuca Barbato2008-03-23
| | | | Originally committed as revision 12560 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixes: tempBlured --> tempBlurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12557 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: typo fixesDiego Biurrun2008-03-22
| | | | Originally committed as revision 12554 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix typo in variable name, numSkiped --> numSkipped.Diego Biurrun2008-03-22
| | | | Originally committed as revision 12553 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix indentation to be 4 spaces and consistently place {}.Diego Biurrun2008-03-22
| | | | Originally committed as revision 12552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo: occured --> occurredDiego Biurrun2008-03-22
| | | | Originally committed as revision 12549 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant ARCH_POWERPC #ifdef around HAVE_ALTIVEC.Diego Biurrun2008-03-18
| | | | Originally committed as revision 12495 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify ALIGN_MASK definitionMåns Rullgård2008-03-17
| | | | Originally committed as revision 12483 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get register names from x86_cpu.hMåns Rullgård2008-03-17
| | | | Originally committed as revision 12482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-15
| | | | Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typosDiego Biurrun2008-03-14
| | | | Originally committed as revision 12443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-12
| | | | Originally committed as revision 12428 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2008-03-10
| | | | Originally committed as revision 12410 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove useless empty line.Diego Biurrun2008-03-08
| | | | Originally committed as revision 12365 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.Diego Biurrun2008-03-08
| | | | Originally committed as revision 12364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify library version handlingMåns Rullgård2008-03-07
| | | | Originally committed as revision 12362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård2008-03-06
| | | | Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* less preprocessor magic in version number macrosMåns Rullgård2008-02-26
| | | | Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Install headers in $prefix/include/$libnameMåns Rullgård2008-02-25
| | | | | | | | | | Install each library's headers in $prefix/include/$libname. The installed headers use #include "lib*/*.h"; applications are expected to do the same. Specify only $prefix/include in .pc files. Originally committed as revision 12194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include avutil.h in postprocess.hMåns Rullgård2008-02-20
| | | | Originally committed as revision 12155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up lib* version definitionsMåns Rullgård2008-02-19
| | | | | | Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make src const.Michael Niedermayer2008-02-02
| | | | Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* void arithmeticMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Missed a variable in postprocess.c that should use DECLARE_ASM_CONST as wellReimar Döffinger2008-01-30
| | | | Originally committed as revision 11670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use DECLARE_ASM_CONSTReimar Döffinger2008-01-30
| | | | Originally committed as revision 11669 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Build both static and shared libs from the same object.Diego Pettenò2008-01-14
| | | | | | | This makes libpostproc consistent with all the other libraries. patch by Diego 'Flameeyes' Pettenò, flameeyes gmail com Originally committed as revision 11526 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unusedMichael Niedermayer2008-01-10
| | | | Originally committed as revision 11492 to svn://svn.ffmpeg.org/ffmpeg/trunk