summaryrefslogtreecommitdiff
path: root/libswscale/swscale.c
Commit message (Expand)AuthorAgeFilesLines
* consistency cosmetics: Rename POWERPC identifiers to PPC.Diego Biurrun2008-12-271-3/+3
* Silence GCC warnings:Vitor Sessak2008-10-271-1/+2
* Silence GCC warningVitor Sessak2008-10-261-1/+1
* Do not attempt to use the unscaled yuv2rgb converter when height is odd becauseMichael Niedermayer2008-10-251-1/+1
* Cosmetics: alignmentVitor Sessak2008-10-231-3/+3
* Fix broken palette8to*.Vitor Sessak2008-10-231-5/+36
* Convert asm keyword into __asm__.Diego Pettenò2008-10-161-4/+4
* Mark some symbols in swscale.c as constant.Diego Pettenò2008-10-091-7/+7
* Mark dither_2x2_{8,4} static to swscale.cDiego Pettenò2008-10-091-2/+2
* Change variable types from int to enum PixelFormat.Carl Eugen Hoyos2008-10-091-2/+2
* Do not set src[1] to the palette, it is now in the contextVitor Sessak2008-10-081-1/+0
* Add a new unscaled PAL8 -> RGB converter.Vitor Sessak2008-10-081-10/+52
* Change one more variable type from int to enum PixelFormat.Aurelien Jacobs2008-10-081-1/+1
* Change variable types from int to enum PixelFormat.Carl Eugen Hoyos2008-10-071-5/+5
* Remove b5Dither, g5Dither and r5Dither from libswscale.Carl Eugen Hoyos2008-10-041-4/+0
* Remove g6Dither from libswscale.Carl Eugen Hoyos2008-10-041-1/+0
* Fix infinite loop with spline, bug was introduced in r27612 by me.Michael Niedermayer2008-09-291-1/+1
* Fix segfault with rgb24 and full_internal_chrome due to non existing alphaMichael Niedermayer2008-09-161-2/+7
* Avoid using floating point for calculating filter coefficients.Michael Niedermayer2008-09-151-81/+83
* Avoid some explicit types in sizeof().Michael Niedermayer2008-09-141-6/+6
* Use av_mallocz() instead of for() =0;Michael Niedermayer2008-09-141-2/+1
* Move dither tables from yuv2rgb to swscale, they have been written by me andMichael Niedermayer2008-09-141-5/+106
* Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.Michael Niedermayer2008-09-131-11/+11
* Ensure that additional filter coeffs that exist due to alignmentMichael Niedermayer2008-09-131-0/+2
* yvu9toyv12Wrapper is not bitexact so disable it when the user wantsMichael Niedermayer2008-09-121-1/+1
* The yuv->rgb tables are too small for cliping to be avoidable,Michael Niedermayer2008-09-121-1/+1
* Add support for PIX_FMT_YUV440P.Michael Niedermayer2008-09-121-0/+2
* Support mono as input format.Michael Niedermayer2008-09-121-0/+2
* Add support for PIX_FMT_MONOWHITE as output format.Michael Niedermayer2008-09-121-5/+7
* rgb24toyv12 isnt accuratly rounding, so disable it as well when theMichael Niedermayer2008-09-121-1/+1
* Do not use the unscaled yuv->rgb converters if SWS_ACCURATE_RND is set,Michael Niedermayer2008-09-121-1/+2
* Remove mistakely commited code i used for testing.Michael Niedermayer2008-09-111-7/+0
* Implement full horizontal chroma for rgb/bgr24/32 output.Michael Niedermayer2008-09-111-1/+87
* Do not do unneeded cliping in YSCALE_YUV_2_PACKEDX_C.Michael Niedermayer2008-09-111-2/+5
* Factorize yuv2packedXinC().Michael Niedermayer2008-09-111-225/+55
* Set rgb2yuv constants more accurately, makes no real difference though.Michael Niedermayer2008-09-111-9/+9
* Correct normalization constant for the vertical filter, iam notMichael Niedermayer2008-09-101-2/+2
* Change RGB2YUV_SHIFT from 16 to 15 to make it able to workMichael Niedermayer2008-09-101-1/+1
* Make SWS_FULL_CHR_H_INP work.Michael Niedermayer2008-09-101-1/+1
* More accurate rounding for 8bit inputs.Michael Niedermayer2008-09-091-3/+3
* Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,Michael Niedermayer2008-09-091-1/+16
* Add table of rgb->yuv convertion coefficients.Michael Niedermayer2008-09-091-0/+11
* Fix jpeg yuv.Michael Niedermayer2008-09-081-2/+2
* Fix accurate rounding mode on x86_64.Michael Niedermayer2008-09-071-1/+1
* Make fast bilinear scaler work again.Michael Niedermayer2008-09-071-0/+1
* simplify function selection codeBaptiste Coudurier2008-09-051-6/+4
* enable yuv422p to uyvy converterBaptiste Coudurier2008-09-051-0/+26
* Make 16bit grayscale output work.Michael Niedermayer2008-09-041-1/+70
* Fix SWS_FAST_BILINEAR and SWS_POINT with some unscaled rgb<->bgr converters.Michael Niedermayer2008-09-041-7/+1
* Support PIX_FMT_RGB32_1 and PIX_FMT_BGR32_1.Michael Niedermayer2008-09-041-4/+15