summaryrefslogtreecommitdiff
path: root/postproc
Commit message (Collapse)AuthorAge
* 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
* makes funnyCode pages executable (for CPU with NX bit)Aurelien Jacobs2005-01-31
| | | | Originally committed as revision 14626 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* fix few x86_64 registers handlingAurelien Jacobs2005-01-21
| | | | Originally committed as revision 14557 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 100l, fix broken AMD64 patch. To whoever applied it: Did you actually _try_Reimar Döffinger2005-01-19
| | | | | | to check if it's correct?? Originally committed as revision 14537 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* 10000l : fix a crash on x86 due to an horrible mistake in my x86_64 patchAurelien Jacobs2004-10-22
| | | | Originally committed as revision 13734 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* adapting existing mmx/mmx2/sse/3dnow optimizations so they work on x86_64Aurelien Jacobs2004-10-21
| | | | Originally committed as revision 13721 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* postproc/yuv2rgb_altivec.c compile fixLuca Barbato2004-10-05
| | | | | | | | yuv2rgb_altivec_init_tables does initialize the SwsContext vectors. missing vec_splat. patch by (Luca Barbato <lu_zero at gentoo dot org>) and (Romain Dolbeau <dolbeau at irisa dot fr>) Originally committed as revision 13565 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* lot of bigendian fixesAlex Beregszaszi2004-09-21
| | | | Originally committed as revision 13424 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
* passing an array or double precission parameters for the scaling function, ↵Michael Niedermayer2004-09-18
| | | | | | | | instead of missusing a few bits of the flags fixing the naming of the scaling functions a little Originally committed as revision 13374 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc