summaryrefslogtreecommitdiff
path: root/libswscale/swscale.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix 4 and 8 bit RGB/BGR input.Michael Niedermayer2008-09-041-9/+34
* Implement swscale_version().Stefano Sabatini2008-08-291-0/+5
* fix memleakMichael Niedermayer2008-07-211-4/+7
* Cleanup, use av_freep() instead of av_free(x); x=NULLMichael Niedermayer2008-07-211-46/+22
* 10l forgot SWS_BILINEARMichael Niedermayer2008-07-171-0/+1
* Ensure that exactly one scaler algo is used.Michael Niedermayer2008-07-171-0/+17
* Split AVOption/AVClass in a separate file. SoC Patch from Keiji CostantiniLuca Barbato2008-07-091-39/+0
* Remove ASSERT() macro. SoC Patch from Keiji CostantiniLuca Barbato2008-07-061-15/+9
* Reindent. SoC Patch from Keiji CostantiniLuca Barbato2008-07-061-45/+42
* Split simpleCopy into packedCopy and planarCopy. SoC Patch from Keiji CostantiniLuca Barbato2008-07-061-8/+14
* cast to correct type, suppress warningsBaptiste Coudurier2008-06-011-1/+1
* cast to correct type, suppress warningsBaptiste Coudurier2008-06-011-1/+1
* add const, suppress warningsBaptiste Coudurier2008-06-011-1/+1
* add const, suppress warningsBaptiste Coudurier2008-06-011-2/+2
* Remove in_asm_used_var_warning_killer()Keiji Costantini2008-05-091-10/+0
* Use full path for #includes from another directory.Diego Biurrun2008-05-091-2/+2
* Fix 64 bit shared library compilation with MMX2 by properly using PIC mangling.Alexander Strange2008-03-221-8/+8