summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess_template.c
Commit message (Collapse)AuthorAge
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | 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-02
| | | | | | 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-22
| | | | Originally committed as revision 21377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove disabled code cruft.Diego Biurrun2009-08-19
| | | | Originally committed as revision 19668 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
* 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
* 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
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 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
* 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
* constMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-12
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use DECLARE_ALIGNED for alignment in libpostprocessReimar Döffinger2007-05-17
| | | | Originally committed as revision 9043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typos/grammarDiego Biurrun2007-04-07
| | | | Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, gurantee --> guArantee.Diego Biurrun2007-02-21
| | | | Originally committed as revision 8054 to svn://svn.ffmpeg.org/ffmpeg/trunk
* rename always_inline to av_always_inline and move to common.hMåns Rullgård2006-12-08
| | | | Originally committed as revision 7256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | Originally committed as revision 6666 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename SIGN macro to FFSIGN to avoid clashes with system headers.Diego Biurrun2006-10-11
| | | | Originally committed as revision 6665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* printf --> av_log with some help from OdedDiego Biurrun2006-10-11
| | | | Originally committed as revision 6639 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change libpostproc to use the FFMIN/FFMAX macros from libavutil.Diego Biurrun2006-10-10
| | | | Originally committed as revision 6622 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* libavcodec/libpostproc ---> libpostprocDiego Biurrun2006-06-01
Originally committed as revision 5440 to svn://svn.ffmpeg.org/ffmpeg/trunk