summaryrefslogtreecommitdiff
path: root/postproc
Commit message (Collapse)AuthorAge
* fix variable type used via "m" asm constraint to match size used in asm.Reimar Döffinger2006-06-05
| | | | | | fixes crashes on AMD64. Originally committed as revision 18576 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Remove now obsolete .cvsignore files.Diego Biurrun2006-06-02
| | | | Originally committed as revision 18556 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* change the type of esp in SwsContext to uint64_t so it can hold a full registerReimar Döffinger2006-05-07
| | | | | | also on 64 bit systems. Originally committed as revision 18401 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* removing esp usageMichael Niedermayer2006-05-06
| | | | | | | this is certainly not the most beautifull but it should work without -fomit-frame-pointer and PIC and gcc-4 vomits when ebp is given in a constraint directly even with -fomi-frame-pointer so theres not that much choice ... if anyone knows a simpler/cleaner solution, dont hesitate to suggest it ... Originally committed as revision 18393 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fix some bugs handling input that is not aligned at 16 bytes or hasAlan Curry2006-04-27
| | | | | | stride!=width. Originally committed as revision 18323 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 10l in rgb2rgb_template.cErik Auerswald2006-04-16
| | | | | | patch by Erik Auerswald <auerswal at unix-ag uni-kl de> Originally committed as revision 18111 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* add support for intel mac. mp3lib is not fixed yet.Nicolas Plourde2006-04-15
| | | | Originally committed as revision 18105 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Reorganize vector constants to work around gcc 4.1 bug:Alan Curry2006-04-06
| | | | | | | | | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27006 This bug caused certain movies (444P or RGB/BGR-based) to become brighter and more purple when played on a YV12 vo. Originally committed as revision 18047 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Support all 4 of ARGB/RGBA/BGRA/ABGR unscaled conversions, with moreAlan Curry2006-03-13
| | | | | | consistent naming of functions Originally committed as revision 17845 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fix rgb32tobgr16, rgb32to15, and rgb32tobgr15. All had the same problem thatAlan Curry2006-02-24
| | | | | | | was fixed in rgb32to16 about a year ago: using only the first 8 bits of the 32-bit pixel. Originally committed as revision 17671 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Just a comment update, replacing a FIXME to reflect the new expectation ofAlan Curry2006-02-18
| | | | | | how altivec_yuv2packedX is supposed to be used Originally committed as revision 17643 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* don't call altivec_yuv2packedX() with a dstFormat that it doesn't support;Alan Curry2006-02-18
| | | | | | instead fall back on yuv2packedXinC Originally committed as revision 17642 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fix vec_clip for gcc's that don't handle (vector signed short){16} accordingAlan Curry2006-02-17
| | | | | | to spec; also convert a few vec_splat's to vec_splat_{s,u}* Originally committed as revision 17639 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* ng the fix for vCCoeffsBank patch by (Alan Curry <pacman TheWorld com>)Alan Curry2006-02-16
| | | | Originally committed as revision 17633 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* make swscale-example compile patch by (Alan Curry <pacman TheWorld com>)Alan Curry2006-02-16
| | | | Originally committed as revision 17632 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Remove obsolete big-endian FIXMEs.Diego Biurrun2006-02-13
| | | | Originally committed as revision 17623 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Move the v{Y,C}CoeffsBank vectors into the SwsContext, filling them in justAlan Curry2006-02-11
| | | | | | | | once when the scaler is initialized, instead of building them and freeing them over and over. This gives massive performance improvements. patch by Alan Curry, pacman*at*TheWorld*dot*com Originally committed as revision 17589 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* cosmetics: indentation fixesDiego Biurrun2006-02-11
| | | | Originally committed as revision 17588 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fix big-endian color permutation problems.Alan Curry2006-02-11
| | | | | | patch by Alan Curry, pacman_at_TheWorld_dot_com Originally committed as revision 17587 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Patch by Stefan Huehner / stefan % huehner ! org \Stefan Huehner2006-02-09
| | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård Originally committed as revision 17567 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Correct RGB vs. BGR confusion, the macros vec_mstrgb24 and vec_mstbgr24 eachAlan Curry2006-02-09
| | | | | | | | | do the opposite of what they say. The vec_mstrgb24 and vec_mstbgr24 macros should be opposites and not perform the same things. patch by Alan Curry, pacman_at_world_dot_std_dot_com Originally committed as revision 17564 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* altivec_yuv2packedX() ignores the requested output format and unconditionallyAlan Curry2006-02-08
| | | | | | | | outputs RGBA. This patch supports 6 output formats and prints an error message if it is asked to provide an output format it is not capable of. patch by Alan Curry, pacman_at_world_dot_std_dot_com Originally committed as revision 17561 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* AltiVec operations need to have memory aligned on 16-byte boundaries.Alan Curry2006-02-08
| | | | | | patch by Alan Curry, pacman at world dot std dot com Originally committed as revision 17559 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* vYCoeffsBank and vCCoeffsBank are allocated and initialized using incorrectAlan Curry2006-02-08
| | | | | | | sizes based on the image width instead of height. patch by Alan Curry, pacman at world dot std dot com Originally committed as revision 17558 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* change sws sharpen filter a littleMichael Niedermayer2006-02-04
| | | | Originally committed as revision 17531 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Make clean/distclean behave uniformly in all directories.Diego Biurrun2006-01-27
| | | | Originally committed as revision 17489 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-13
| | | | Originally committed as revision 17368 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Unify include paths, -I.. is in CFLAGS.Diego Biurrun2005-11-14
| | | | Originally committed as revision 16986 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 100l -- mismatched type after changing sizes to type long!D Richard Felker III2005-10-17
| | | | Originally committed as revision 16784 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Change unsigned->signed and int->long, this fits the asm code better on 64Reimar Döffinger2005-10-12
| | | | | | | bit systems. Also fixes several crashes because (long)-i is incorrect if i is unsigned. Originally committed as revision 16740 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Reduce unnecessary swscaler verbosity.Diego Biurrun2005-09-06
| | | | Originally committed as revision 16405 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Re-enables the GCC-4 fix for AMD-64 only. Patch by cartman and poiriergGuillaume Poirier2005-07-12
| | | | Originally committed as revision 15973 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Reverts GCC-4.0 "fixe" which broke GCC-3.3 and maybe othersGuillaume Poirier2005-06-30
| | | | Originally committed as revision 15859 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Another REG_d -> REG_D fix.Reimar Döffinger2005-06-28
| | | | Originally committed as revision 15846 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* width % 16 != 0 workaround by (Nicolas Plourde: nicolas plourde, gmail com>)Michael Niedermayer2005-06-27
| | | | | | | | | | cleanup by me indention fixed second one must be yv12touyvy instead of yv12toyuy2 replace slow modulo by bitwise and move %16!=0 code before the comment saying the code cant handle %16!=0 Originally committed as revision 15825 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fixes GCC4 fix by using "g" instead of "mp" as some compilers misscompileGuillaume Poirier2005-06-24
| | | | | | that code othewisei (leading to segfaults). Originally committed as revision 15814 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 10l. Previous GCC4 commit broke compilation with gcc-3.4 and maybe others ia-32Guillaume Poirier2005-06-19
| | | | | | tested with gcc-2.95, 3.3, 3.4, 4.0 on ia-32 and 3.4, 4.0, 3.3 on amd64 Originally committed as revision 15763 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* GCC-4 fix for AMD-64Guillaume Poirier2005-06-18
| | | | | | Warning: high cola-affinity here) Originally committed as revision 15750 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* one bugfix and a few gcc4 bug workaorunds by (Gianluigi Tiesi: mplayer, ↵Michael Niedermayer2005-06-02
| | | | | | netfarm it) Originally committed as revision 15618 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Should fix altivec detection for g3 system.Nicolas Plourde2005-05-20
| | | | Originally committed as revision 15524 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* unused defineAlex Beregszaszi2005-04-29
| | | | Originally committed as revision 15296 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* fix palette8tobgr32/palette8torgb32 on big endianNicolas Plourde2005-04-27
| | | | Originally committed as revision 15278 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* check for negative strides before memcpyJindřich Makovička2005-04-24
| | | | Originally committed as revision 15250 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* support for both orderings of the slices (top->down / bottom->up)Jindřich Makovička2005-04-24
| | | | Originally committed as revision 15249 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Fixes rgb32to16 conversion for I think all platforms since the int8Rene Rebe2005-03-22
| | | | | | | | cast should never have worked. Tested on PowerPC and fixes the black GUI to show the content. patch by Rene Rebe <rene at exactcode dot de> Originally committed as revision 14983 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 100l, forgot to change an ifdef on last commitReimar Döffinger2005-02-23
| | | | Originally committed as revision 14784 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* fix for MAP_ANON vs. MAP_ANONYMOUS fix...Reimar Döffinger2005-02-22
| | | | Originally committed as revision 14762 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Improved NV12/NV21 support.Ville Syrjälä2005-02-16
| | | | | | | | | | - Fixed PlanarToNV12Wrapper() and made it handle NV21. - Added yuv2nv12XinC() to handle software scaling. - Added NV12/NV21 handling to various places. - Removed NV12 from vf_hue and vf_spp as they don't look like they can actually handle it. Originally committed as revision 14716 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* FreeBSD fixBohdan Horst2005-02-14
| | | | Originally committed as revision 14699 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* Compile fix on non-x86Reimar Döffinger2005-02-01
| | | | Originally committed as revision 14631 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc