aboutsummaryrefslogtreecommitdiffhomepage
path: root/libswscale/swscale.c
Commit message (Expand)AuthorAge
* Disable C code when compiling AltiVec code, fixes the warning:Gravatar diego2009-01-25
* spelling/grammar cosmeticsGravatar diego2009-01-25
* Fix #endif comments.Gravatar diego2009-01-25
* Add PIX_FMT_VDPAU_WMV3 and PIX_FMT_VDPAU_VC1.Gravatar cehoyos2009-01-20
* Add VDPAU hardware accelerated decoding for MPEG1 and MPEG2 which willGravatar cehoyos2009-01-16
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Gravatar aurel2009-01-14
* Add PIX_FMT_VDPAU_H264.Gravatar cehoyos2009-01-08
* consistency cosmetics: Rename POWERPC identifiers to PPC.Gravatar diego2008-12-27
* Silence GCC warnings:Gravatar vitor2008-10-27
* Silence the following GCC warning:Gravatar vitor2008-10-26
* Do not attempt to use the unscaled yuv2rgb converter when height is odd becauseGravatar michael2008-10-25
* Cosmetics: alignmentGravatar vitor2008-10-23
* Fix broken palette8to*.Gravatar vitor2008-10-23
* Convert asm keyword into __asm__.Gravatar flameeyes2008-10-16
* Mark some symbols in swscale.c as constant.Gravatar flameeyes2008-10-09
* Mark dither_2x2_{8,4} static to swscale.cGravatar flameeyes2008-10-09
* Change variable types from int to enum PixelFormat.Gravatar cehoyos2008-10-09
* Do not set src[1] to the palette, it is now in the contextGravatar vitor2008-10-08
* Add a new unscaled PAL8 -> RGB converter.Gravatar vitor2008-10-08
* Change one more variable type from int to enum PixelFormat.Gravatar aurel2008-10-08
* Change variable types from int to enum PixelFormat.Gravatar cehoyos2008-10-07
* Remove b5Dither, g5Dither and r5Dither from libswscale.Gravatar cehoyos2008-10-04
* Remove g6Dither from libswscale.Gravatar cehoyos2008-10-04
* Fix infinite loop with spline, bug was introduced in r27612 by me.Gravatar michael2008-09-29
* Fix segfault with rgb24 and full_internal_chroma due to non-existing alphaGravatar michael2008-09-16
* Avoid using floating point for calculating filter coefficients.Gravatar michael2008-09-15
* Avoid some explicit types in sizeof().Gravatar michael2008-09-14
* Use av_mallocz() instead of for() =0;Gravatar michael2008-09-14
* Move dither tables from yuv2rgb to swscale, they have been written by me andGravatar michael2008-09-14
* Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.Gravatar michael2008-09-13
* Ensure that additional filter coeffs that exist due to alignmentGravatar michael2008-09-13
* yvu9toyv12Wrapper is not bitexact so disable it when the user wantsGravatar michael2008-09-12
* The yuv->rgb tables are too small for cliping to be avoidable,Gravatar michael2008-09-12
* Add support for PIX_FMT_YUV440P.Gravatar michael2008-09-12
* Support mono as input format.Gravatar michael2008-09-12
* Add support for PIX_FMT_MONOWHITE as output format.Gravatar michael2008-09-12
* rgb24toyv12 is not accurately rounding, so disable it as well when theGravatar michael2008-09-12
* Do not use the unscaled yuv->rgb converters if SWS_ACCURATE_RND is set,Gravatar michael2008-09-12
* Remove mistakely commited code i used for testing.Gravatar michael2008-09-11
* Implement full horizontal chroma for rgb/bgr24/32 output. Gravatar michael2008-09-11
* Do not do unneeded clipping in YSCALE_YUV_2_PACKEDX_C.Gravatar michael2008-09-11
* Factorize yuv2packedXinC().Gravatar michael2008-09-11
* Set rgb2yuv constants more accurately, makes no real difference though.Gravatar michael2008-09-11
* Correct normalization constant for the vertical filter.Gravatar michael2008-09-10
* Change RGB2YUV_SHIFT from 16 to 15 to make it able to workGravatar michael2008-09-10
* Make SWS_FULL_CHR_H_INP work.Gravatar michael2008-09-10
* More accurate rounding for 8bit inputs.Gravatar michael2008-09-09
* Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,Gravatar michael2008-09-09
* Add table of rgb->yuv conversion coefficients.Gravatar michael2008-09-09
* Fix jpeg yuv.Gravatar michael2008-09-08