summaryrefslogtreecommitdiffstats
path: root/libpostproc
Commit message (Collapse)AuthorAgeFilesLines
* consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård2008-03-061-1/+1
| | | | Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* less preprocessor magic in version number macrosMåns Rullgård2008-02-261-4/+10
| | | | Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Install headers in $prefix/include/$libnameMåns Rullgård2008-02-252-7/+1
| | | | | | | | | | 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-201-0/+2
| | | | Originally committed as revision 12155 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up lib* version definitionsMåns Rullgård2008-02-191-2/+4
| | | | | | Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-023-20/+20
| | | | Originally committed as revision 11816 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make src const.Michael Niedermayer2008-02-021-1/+1
| | | | Originally committed as revision 11813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* void arithmeticMichael Niedermayer2008-02-021-1/+1
| | | | 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-301-1/+1
| | | | Originally committed as revision 11670 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify: use DECLARE_ASM_CONSTReimar Döffinger2008-01-301-8/+8
| | | | 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-141-8/+2
| | | | | | | 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-101-4/+0
| | | | Originally committed as revision 11492 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make MMX vectors constants.Diego Pettenò2008-01-101-8/+8
| | | | | | 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-102-0/+8
| | | | | | 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-101-5/+5
| | | | | | 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-082-20/+0
| | | | | | 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-072-2/+2
| | | | | | 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-042-2/+2
| | | | | | | | 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-032-2/+2
| | | | | | 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-031-2/+2
| | | | | | | 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
* spellingVitor Sessak2007-12-011-4/+4
| | | | Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Declare libpostproc prerequisites directly instead of using a layer ofDiego Biurrun2007-10-301-3/+3
| | | | | | | indirection. This moves build system workarounds closer to libpostproc where they are really needed. Originally committed as revision 10874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add FFMPEG_ prefix to all multiple inclusion guards.Diego Biurrun2007-10-172-6/+6
| | | | Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use filename as multiple inclusion guard.Diego Biurrun2007-10-171-3/+3
| | | | Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move Apple gcc AltiVec vector declaration syntax to libavutil.Diego Biurrun2007-08-241-6/+0
| | | | Originally committed as revision 10207 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).Diego Biurrun2007-08-221-1/+1
| | | | Originally committed as revision 10190 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Uppercase variable overlooked in last commit.Diego Biurrun2007-07-211-1/+1
| | | | Originally committed as revision 9777 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove mangle.h, it is just a duplicate of parts of libavutil/internal.h.Diego Biurrun2007-07-062-49/+0
| | | | Originally committed as revision 9500 to svn://svn.ffmpeg.org/ffmpeg/trunk
* license header consistency cosmeticsDiego Biurrun2007-07-051-1/+1
| | | | Originally committed as revision 9484 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove leading underscores from specifiers, they are reserved.Diego Biurrun2007-07-021-3/+3
| | | | Originally committed as revision 9461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix 'make checkheaders'.Diego Biurrun2007-07-022-0/+3
| | | | Originally committed as revision 9460 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add a comment to indicate which #endif belong to which #defineGuillaume Poirier2007-06-171-1/+1
| | | | Originally committed as revision 9356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add multiple inclusion guards to headersMåns Rullgård2007-06-171-0/+5
| | | | Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc typo fixesDiego Biurrun2007-06-121-3/+4
| | | | Originally committed as revision 9291 to svn://svn.ffmpeg.org/ffmpeg/trunk
* misc spelling fixesDiego Biurrun2007-06-123-17/+17
| | | | Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move libpostproc-specific uninstallation command to the libpostproc Makefile.Diego Biurrun2007-06-101-0/+2
| | | | Originally committed as revision 9277 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.Diego Biurrun2007-05-281-3/+0
| | | | Originally committed as revision 9145 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use DECLARE_ALIGNED for alignment in libpostprocessReimar Döffinger2007-05-172-10/+10
| | | | Originally committed as revision 9043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove extern C declarations for C++.Diego Biurrun2007-05-161-8/+0
| | | | | | FFmpeg is pure C and not all public headers have the declarations. Originally committed as revision 9037 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typos/grammarDiego Biurrun2007-04-071-1/+1
| | | | Originally committed as revision 8641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* TypoLuca Barbato2007-03-021-1/+1
| | | | Originally committed as revision 8185 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Many steps to avutilized this mess: DECLARE_ALIGNEDLuca Barbato2007-03-021-6/+7
| | | | Originally committed as revision 8184 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless conditional.Diego Biurrun2007-02-271-2/+0
| | | | Originally committed as revision 8139 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix another common typo, gurantee --> guArantee.Diego Biurrun2007-02-211-2/+2
| | | | 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-082-2/+2
| | | | Originally committed as revision 7256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* allow spaces in source and build directory namesMåns Rullgård2006-11-081-1/+1
| | | | | | | out of tree builds from a source dir with spaces is impossible due to how make handles vpath Originally committed as revision 6938 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use common define for x86_32 and x86_64.Diego Biurrun2006-11-011-5/+5
| | | | Originally committed as revision 6859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix dependencies for 'make dep'.Diego Biurrun2006-10-291-1/+1
| | | | Originally committed as revision 6835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix #endif comments.Diego Biurrun2006-10-161-1/+1
| | | | Originally committed as revision 6709 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert putting EXTRALIBS in common.mak, linking fails on MinGW.Diego Biurrun2006-10-151-0/+2
| | | | Originally committed as revision 6700 to svn://svn.ffmpeg.org/ffmpeg/trunk
OpenPOWER on IntegriCloud