summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.c
Commit message (Collapse)AuthorAge
* 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
* 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
* 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
* 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
* 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 indentation to be 4 spaces and consistently place {}.Diego Biurrun2008-03-22
| | | | Originally committed as revision 12552 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
* 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
* constMichael Niedermayer2008-02-02
| | | | Originally committed as revision 11816 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
* Make MMX vectors constants.Diego Pettenò2008-01-10
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11488 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pp_help a constant array of characters to move it to .rodata.Diego Pettenò2008-01-10
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11487 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce the size of the replaceTable entries.Diego Pettenò2008-01-10
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11486 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove clip_table as it is not used anymore.Diego Pettenò2008-01-08
| | | | | | Patch by Diego 'Flameeyes' Pettenò (flameeyes gmail com) Originally committed as revision 11468 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the av_class member of PPContext a poiner to constant AVClass.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11445 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make pp_help a constant pointer to constant characters, moves it partiallyDiego Pettenò2008-01-04
| | | | | | | | 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
* Make pp_get_mode_by_name_and_quality accept a constant string.Diego Pettenò2008-01-03
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes at gmail com Originally committed as revision 11381 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make filterDelimiters and optionDelimiters two static constant array ofDiego Pettenò2008-01-03
| | | | | | | 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
* Remove mangle.h, it is just a duplicate of parts of libavutil/internal.h.Diego Biurrun2007-07-06
| | | | Originally committed as revision 9500 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
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun2007-05-28
| | | | Originally committed as revision 9145 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
* 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
* Use common define for x86_32 and x86_64.Diego Biurrun2006-11-01
| | | | Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix #endif comments.Diego Biurrun2006-10-16
| | | | Originally committed as revision 6709 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
* Move sign macro to libavutil.Diego Biurrun2006-10-10
| | | | Originally committed as revision 6620 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use ABS macro from libavutil.Diego Biurrun2006-10-10
| | | | Originally committed as revision 6619 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove gcc-workaround that is already present in libavutil/common.h.Diego Biurrun2006-10-09
| | | | Originally committed as revision 6614 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix default license header.Diego Biurrun2006-10-09
| | | | Originally committed as revision 6613 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
* 1000000l for lu_zero (commiting untested? code)Michael Niedermayer2006-10-03
| | | | Originally committed as revision 6537 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make postproc use avutilLuca Barbato2006-10-02
| | | | Originally committed as revision 6524 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Explicitly include fastmemcpy.h from libvo/.Diego Biurrun2006-08-18
| | | | Originally committed as revision 6021 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add const to (mostly) char* and make some functions static, which aren't usedStefan Huehner2006-06-18
| | | | | | | outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* CVS --> SubversionDiego Biurrun2006-06-09
| | | | Originally committed as revision 5461 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