summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* Rename yuv2rgb2.c --> yuv2rgb.c.diego2009-02-242-1/+1
* Relicense AltiVec optimizations as LGPL with the permission of Marc Hoffmandiego2009-02-241-8/+8
* Remove GPL version of yuv2rgb.c that has been replaced by an LGPL substitute.diego2009-02-241-780/+0
* New LGPLed YUV2RGB table generator for SwScalerkostya2009-02-224-5/+685
* Factorize some code in yuv2rgb_template.c to ease further yuva2rgb patch.cehoyos2009-02-211-158/+73
* move zeroing of alpha channel register out of YSCALEYUV2xxx macros,stefang2009-02-211-4/+23
* splits various YSCALEYUV2xxx macros into YSCALEYUV2xxx_UV,stefang2009-02-211-8/+27
* make MMX registers parametrized in the WRITEBGR32 macro,stefang2009-02-211-24/+23
* Rename the "src" parameter in the sws_scale() declaration tostefano2009-02-181-3/+3
* Document sws_scale().stefano2009-02-181-0/+23
* Use sws_printVec2() instead of the deprecated sws_printVec(). stefano2009-02-141-2/+2
* Implement sws_printVec2() and deprecate sws_printVec().stefano2009-02-142-7/+25
* Document sws_normalizeVec().stefano2009-02-141-0/+5
* Make hScale_altivec_real() trim its output like other implementations dokostya2009-02-141-5/+5
* Some AltiVec functions in SwScaler produce different output than theirkostya2009-02-142-2/+4
* Apply misc fixes for sws_getCachedContext() documentation.stefano2009-02-121-7/+10
* Bump micro version, related to r28491.stefano2009-02-121-1/+1
* Document sws_getContext().stefano2009-02-111-0/+13
* Document sws_getIdentityVec().stefano2009-02-111-0/+5
* Move sws_getGaussianVec() documentation from swscale.c to swscale.h.stefano2009-02-102-4/+5
* Document sws_cloneVec().stefano2009-02-101-0/+5
* Fix typo: lenght -> length.stefano2009-02-101-1/+1
* Document sws_scaleVec().stefano2009-02-101-0/+4
* Document sws_getConstVec().stefano2009-02-101-0/+5
* Move documentation of sws_getCachedContext() from swscale.c tostefano2009-02-102-10/+10
* Remove pointless comment regarding sws_scale_ordered().stefano2009-02-101-3/+0
* Add a @deprecated notice to swscale_get_ordered().stefano2009-02-101-0/+3
* Remove unnecessary emms Assembler instructions.diego2009-02-101-9/+0
* Document coeff and length fields in SwsVector.stefano2009-02-091-2/+2
* Revert #undefining system functions, it is not necessary.diego2009-02-091-7/+0
* Add config.h #include for ARCH_X86 definition.diego2009-02-091-0/+1
* Add #undefs to reenable system functions that are normally forbidden in otherdiego2009-02-091-0/+7
* Drop DECLARE_ALIGNED from extern declarations. It creates trouble whendiego2009-02-091-2/+2
* Prefix visible YUV2RGB functions with sws_kostya2009-02-096-16/+16
* Give better name to Inverse_Table_6_9kostya2009-02-092-4/+4
* Remove file name from file headers.diego2009-02-091-1/+1
* Drop the deprecated sws_scale_ordered() at the next major versionstefano2009-02-082-0/+4
* Replace int type with enum PixelFormat for the dstFormat/srcFormatstefano2009-02-081-3/+3
* Fix a typo: lumaSarpen -> lumaSharpen.stefano2009-02-081-1/+1
* cosmetics: Remove period after copyright statement non-sentence.diego2009-02-011-1/+1
* Use full internal pathname in doxygen @file directives.diego2009-02-011-1/+1
* HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.diego2009-01-256-31/+31
* Declare struct SwsContext before using it, fixes the checkheaders warning:diego2009-01-251-0/+2
* Disable C code when compiling AltiVec code, fixes the warning:diego2009-01-251-0/+1
* spelling/grammar cosmeticsdiego2009-01-251-48/+48
* Fix #endif comments.diego2009-01-251-5/+5
* Add PIX_FMT_VDPAU_WMV3 and PIX_FMT_VDPAU_VC1.cehoyos2009-01-201-0/+4
* Add VDPAU hardware accelerated decoding for MPEG1 and MPEG2 which willcehoyos2009-01-161-0/+4
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.aurel2009-01-148-186/+195
* Add PIX_FMT_VDPAU_H264.cehoyos2009-01-081-0/+2
* Avoid POSIX-reserved _t namespace.diego2008-12-271-3/+3
* consistency cosmetics: Rename POWERPC identifiers to PPC.diego2008-12-271-3/+3
* Remove pointless malloc.h #include.diego2008-12-193-9/+0
* Some forgotten eax -> REG_a changes.reimar2008-12-121-24/+24
* Delete unnecessary 'extern' keywords.diego2008-12-033-31/+31
* Remove commented-out duplicate declarations.diego2008-12-021-2/+0
* Remove unused declarations.diego2008-12-021-15/+0
* cosmetics: Consistently place HEADERS before OBJS in all Makefiles.diego2008-11-201-2/+2
* Put variable declaration inside an #ifdef to avoid an unused variable warning.diego2008-11-171-2/+3
* Add some const specifiers to function name variables; fixes a bunch ofdiego2008-11-041-2/+2
* Merge ARCH_BFIN lines.diego2008-11-031-3/+1
* Add tests target for libswscale test programs.diego2008-11-031-0/+2
* Remove forgotten ASM_OBJS in libswscalemru2008-11-031-1/+1
* Silence GCC warnings:vitor2008-10-271-1/+2
* rgb2rgb.h was not really intended to be a public header, thus remove it.michael2008-10-271-1/+1
* Remove rgb2rgb.h dependancy.michael2008-10-271-6/+0
* Silence the following GCC warning:vitor2008-10-261-1/+1
* Remove unused code that can't be compiled without svn archive.cehoyos2008-10-251-269/+0
* Do not attempt to use the unscaled yuv2rgb converter when height is odd becausemichael2008-10-251-1/+1
* Cosmetics: alignmentvitor2008-10-231-3/+3
* Fix broken palette8to*.vitor2008-10-233-75/+43
* cosmetics: typo fixdiego2008-10-233-3/+3
* Convert typeof keyword into __typeof__conrad2008-10-191-10/+10
* Convert asm keyword into __asm__.flameeyes2008-10-166-180/+180
* Mark some symbols in swscale.c as constant.flameeyes2008-10-091-7/+7
* Mark dither_2x2_{8,4} static to swscale.cflameeyes2008-10-092-4/+2
* Mark variation-specific interleaveBytes static.flameeyes2008-10-091-1/+1
* Invert logic for the single-pass in swScale() functions.flameeyes2008-10-091-3/+3
* Change variable types from int to enum PixelFormat.cehoyos2008-10-091-2/+2
* Do not set src[1] to the palette, it is now in the contextvitor2008-10-082-3/+1
* Add a new unscaled PAL8 -> RGB converter.vitor2008-10-082-10/+55
* Change one more variable type from int to enum PixelFormat.aurel2008-10-081-1/+1
* Change variable types from int to enum PixelFormat.cehoyos2008-10-072-6/+6
* gcc-apple specific fallback not necessary anymorelu_zero2008-10-051-5/+0
* Use HAVE_FAST_64BIT instead of nonstandard __WORDSIZE macro.diego2008-10-051-3/+2
* Remove b5Dither, g5Dither and r5Dither from libswscale.cehoyos2008-10-044-58/+48
* Remove g6Dither from libswscale.cehoyos2008-10-044-14/+12
* Remove MPlayer-specific MP_WORDSIZE hack.diego2008-10-041-5/+0
* Remove unused function fast_memcpy.diego2008-09-291-4/+0
* cosmetics: indentationdiego2008-09-291-6/+5
* Revert mistakenly committed hunk.michael2008-09-291-1/+1
* Print all cases that are tested, not just the ones that are bad.michael2008-09-291-3/+1
* Fix infinite loop with spline, bug was introduced in r27612 by me.michael2008-09-291-1/+1
* Uniform *ToY and *ToUV function signatureslu_zero2008-09-181-51/+51
* Split mono2Y in monowhite and monoblacklu_zero2008-09-181-4/+19
* Factorize unit32_t* casts for palette pointerlu_zero2008-09-181-6/+6
* Fix segfault with rgb24 and full_internal_chroma due to non-existing alphamichael2008-09-161-2/+7
* Avoid using floating point for calculating filter coefficients.michael2008-09-151-81/+83
* Avoid some explicit types in sizeof().michael2008-09-141-6/+6
* Use av_mallocz() instead of for() =0;michael2008-09-141-2/+1
* Move dither tables from yuv2rgb to swscale, they have been written by me andmichael2008-09-142-111/+111
* Fix libswscale build after r27561 if --enable-runtime-cpudetection is used.ben2008-09-131-6/+6
* Fix indention.michael2008-09-131-313/+313
* Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.michael2008-09-132-12/+17
* Disable mmx routines that are not bitexact when the user wantsmichael2008-09-131-6/+15
* Make horizontal mmx scaling code match C code.michael2008-09-131-16/+15
* Ensure that additional filter coeffs that exist due to alignmentmichael2008-09-131-0/+2
* yvu9toyv12Wrapper is not bitexact so disable it when the user wantsmichael2008-09-121-1/+1
* Make the horizontal C scaler code clip only against INT16_MAX not 0,michael2008-09-121-1/+1
* Add bitexact flag.michael2008-09-122-0/+2
* The yuv->rgb tables are too small for cliping to be avoidable,michael2008-09-121-1/+1
* Fix another 1000l bug in the mono input code.michael2008-09-121-2/+2
* Add support for PIX_FMT_YUV440P.michael2008-09-121-0/+2
* 10000l PIX_FMT_MONOWHITE check was really a || 1.michael2008-09-121-1/+1
* Support mono as input format.michael2008-09-122-1/+18
* Add support for PIX_FMT_MONOWHITE as output format.michael2008-09-123-8/+13
* rgb24toyv12 is not accurately rounding, so disable it as well when themichael2008-09-121-1/+1
* Do not use the unscaled yuv->rgb converters if SWS_ACCURATE_RND is set,michael2008-09-121-1/+2
* 100000000000000l, forgot to commit header change for r27580.michael2008-09-111-0/+1
* Fix typo that lead to averaging of the same pixel in rgb24ToUV_half().michael2008-09-111-3/+3
* Remove mistakely commited code i used for testing.michael2008-09-111-7/+0
* Implement full horizontal chroma for rgb/bgr24/32 output. michael2008-09-112-1/+115
* Do not do unneeded clipping in YSCALE_YUV_2_PACKEDX_C.michael2008-09-111-2/+5
* Factorize yuv2packedXinC().michael2008-09-112-228/+58
* Set rgb2yuv constants more accurately, makes no real difference though.michael2008-09-111-9/+9
* Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as itmichael2008-09-111-4/+4
* Correct normalization constant for the vertical filter.michael2008-09-101-2/+2
* Make the 2point linear interpolation coefficients correct even for themichael2008-09-101-2/+2
* Fix overflow.michael2008-09-101-2/+2
* Fix build failure due to %%eip on x86_64.michael2008-09-101-4/+6
* Change RGB2YUV_SHIFT from 16 to 15 to make it able to workmichael2008-09-102-5/+3
* Add bgr/rgb15/16/32->UV-half to the macro so there is less code duplicationmichael2008-09-101-124/+24
* Factorize RGB/BGR15/16/32->UV by using the preprocessor.michael2008-09-101-93/+20
* Factorize rgb/bgr15/16/32->Y by using the preprocessor.michael2008-09-101-81/+20
* Make SWS_FULL_CHR_H_INP work.michael2008-09-102-11/+165
* spelling/wording cosmeticsdiego2008-09-101-4/+3
* More accurate rounding for 8bit inputs.michael2008-09-091-3/+3
* Rewrite bgr24->yuv mmx code, the new code is cleaner, more accurate,michael2008-09-092-196/+147
* Add table of rgb->yuv conversion coefficients.michael2008-09-091-0/+11
* More correct rounding for the rgb/bgr->yuv converters.michael2008-09-091-20/+20
* Prevent overflows during mpeg->jpeg yuv.michael2008-09-091-3/+3
* Fix jpeg yuv.michael2008-09-082-8/+37
* Fix typo in comment.michael2008-09-081-1/+1
* Fix accurate rounding mode on x86_64.michael2008-09-073-21/+34
* Make ToY and ToUV family of function consistent part Ilu_zero2008-09-071-16/+16
* Make fast bilinear scaler work again.michael2008-09-071-0/+1
* simplify function selection codebcoudurier2008-09-051-6/+4
* enable yuv422p to uyvy converterbcoudurier2008-09-054-0/+48
* Make 16bit grayscale output work.michael2008-09-042-6/+75
* Fix SWS_FAST_BILINEAR and SWS_POINT with some unscaled rgb<->bgr converters.michael2008-09-041-7/+1
* Support PIX_FMT_RGB32_1 and PIX_FMT_BGR32_1.michael2008-09-044-8/+53
* Fix 4 and 8 bit RGB/BGR input.michael2008-09-041-9/+34
* Remove workaround for rgb/bgr mess.michael2008-09-041-2/+2
* Fix 4 of the unscaled rgb15/16 converters, each of these containedmichael2008-09-041-28/+10
* rgb vs bgr fix for the unscaled converters.michael2008-09-043-42/+42
* Fix rgb15/16 vs. bgr part2.michael2008-09-041-24/+24
* Fix rgb15/16 vs. bgr part1.michael2008-09-041-5/+12
* Add fflush to prevent stdout & stderr from being mixed.michael2008-09-041-0/+2
* Change header inclusion guard names in line with FFmpeg r15120.stefano2008-08-313-9/+9
* Implement swscale_version().stefano2008-08-292-1/+11
* compilation fix with GCC 4.0.1 on MacOSX tiger, broken by the removal of AVV(...gpoirier2008-07-251-8/+8
* cosmetics: Fix indentation after last commit.diego2008-07-241-6/+6
* Remove AltiVec vector declaration compiler compatibility macros.diego2008-07-241-47/+47
* fix memleakmichael2008-07-211-4/+7
* Cleanup, use av_freep() instead of av_free(x); x=NULLmichael2008-07-211-46/+22
* Make C code in yuv2yuv1() do accurate rounding, this could be splitmichael2008-07-181-3/+3
* indentmichael2008-07-171-8/+8
* Forgotten accurate rounding function YSCALEYUV2YV121_ACCURATE.michael2008-07-171-2/+31
* simplify yuv2yuv1()michael2008-07-171-16/+7
* 10l forgot SWS_BILINEARmichael2008-07-171-0/+1
* Ensure that exactly one scaler algo is used.michael2008-07-171-0/+17
* Cosmetics: reindent.astrange2008-07-131-13/+13
* Remove const vector casts from Altivec.astrange2008-07-131-7/+7
* 100l, avoption splitted code added, I should double check with svn status...lu_zero2008-07-101-0/+59
*