summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* Add const qualifier to param argument of sws_getContext() anddiego2009-05-102-4/+5
* Move preprocessor condition before variable declaration, fixes the warning:diego2009-05-101-1/+1
* Add missing const qualifiers to AltiVec function parameters where appropriate.diego2009-05-093-7/+11
* Fix sliced yuv410 -> yuv420 conversionvitor2009-05-071-4/+8
* Change VOFW for x86 to 5120, it allows larger images to be scaled and wasmichael2009-05-051-1/+6
* Fix chroma shift when scaling from ARGB on LE and BGRA on BEsdrik2009-05-021-1/+1
* Remove useless duplicated code in yuv2rgb_c_32, yuva2rgba_c and yuva2argb_csdrik2009-04-271-9/+0
* Make reset_ptr() void.cehoyos2009-04-231-1/+1
* Planar 16bit 420 422 444 YUV support (output is only supported in somemichael2009-04-213-2/+129
* Merge gray->gray converters into planarCopy(), this should also make planarCo...michael2009-04-211-90/+37
* Add macro to check for 16bit per sample.michael2009-04-211-0/+4
* Make sure src/dst are NULL when they arent used, some code uses this tomichael2009-04-211-5/+28
* Use generic BE check instead of checking for gray16LE.michael2009-04-201-1/+1
* add isBE()michael2009-04-201-0/+1
* Remove 2 useless += at the end of rgb16to15(), found by CSA.michael2009-04-181-2/+0
* Rename swscale_avoption.c to options.c.stefano2009-04-182-1/+1
* Make sws_setColorspaceDetails() return -1 if the destination format isstefano2009-04-181-1/+1
* Move sws_[gs]etColorspaceDetails() documentation from swscale.c tostefano2009-04-182-9/+9
* whitespace cosmetics: Break some overly long lines.diego2009-04-141-10/+18
* Do not use abgrToA for both luma and alpha channel in hyscale.sdrik2009-04-142-10/+11
* Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.diego2009-04-121-2/+0
* whitespace cosmetics: Reindent a few lines and break a few excessively long l...diego2009-04-121-12/+15
* Rename RUNTIME_CPUDETECT to CONFIG_RUNTIME_CPUDETECT and always define it.ramiro2009-04-081-10/+10
* swscale: Remove X86 commented out code.ramiro2009-04-051-11/+1
* swscale: Use function pointers for swScale functions.ramiro2009-04-043-205/+186
* swscale: {}-related cosmetics.ramiro2009-04-041-7/+10
* swscale: Add const to some swScale functions' parameters.ramiro2009-04-042-70/+72
* swscale: Remove mmx2 params from h[yc]scale().ramiro2009-04-021-29/+36
* swscale: Split h[yc]scale_fast() into their own functions.ramiro2009-04-021-23/+38
* swscale: Execute sfence and emms depending on runtime flags.ramiro2009-04-021-17/+4
* Make examples and test progs depend on librariesmru2009-04-011-5/+0
* Add missing $(EXESUF) to example/test program dependency declaration.diego2009-03-311-3/+3
* Use correct PRId64 instead of "lld" in printf string, fixes compiler warnings.reimar2009-03-301-1/+1
* Generalize example target rule in common.mak so that it sets a -example$(EXESUF)diego2009-03-291-1/+1
* Move swscale AltiVec template code to ppc subdirectory.diego2009-03-292-1/+1
* Relicense file to LGPL with the permission of Romain Dolbeau, the author.diego2009-03-291-8/+8
* Move bfin specific code to its subdir.ramiro2009-03-274-4/+7
* Rename cs_test.c --> colorspace-test.c. This is more consistent with the namesdiego2009-03-262-2/+2
* Move yuv2rgb code to subdirs.ramiro2009-03-269-65/+113
* swscale-example is an API example, not a test program.diego2009-03-251-1/+2
* Adds "YUYV422 to YUVA420P" and "UYVY422 to YUVA420P" unscaled convertionsdrik2009-03-241-2/+8
* Fix some places where "non-alpha to YUVA420P" do not fill the alpha planesdrik2009-03-241-0/+6
* Simpler and more elegant fix to the x86_32/OSX+PIC build failuresdrik2009-03-242-10/+4
* Rename 'tests' target to 'testprogs'. It is too easily confused with thediego2009-03-221-1/+1
* Remove unnecessary CLEANFILES declaration. Test programs do not require it.diego2009-03-221-2/+0
* Enable unscaled packed422 -> planar 420 converters by default as themichael2009-03-211-5/+4
* 10l (C code was buggy and untested)michael2009-03-211-4/+7
* Average chroma of 2 lines in packed 422 -> planar 420.michael2009-03-211-4/+110
* Fix build failure on x86_32 Mac OS X with PIC enabledsdrik2009-03-212-2/+12
* Fix planarCopy to ignore the GRAY8 "pseudo"-palette, fixes libavtest regressi...reimar2009-03-211-1/+3
* Avoid crash on planarCopy to a destination without alpha.reimar2009-03-201-1/+2
* Initialize pointer arrays which may be freed before being initialized.benoit2009-03-201-3/+3
* Do _not_ use rbx on x86_64, it will fail to compile with PIC, besides itreimar2009-03-201-4/+3
* Fix swscale compilation with Altivec enabled.reimar2009-03-201-1/+1
* Reindent after last commitsdrik2009-03-201-66/+66
* Also test the alpha channel in swscale-examplesdrik2009-03-201-19/+22
* YUVA420P is now supported as output formatsdrik2009-03-202-8/+13
* Add alpha channel scalingsdrik2009-03-203-88/+411
* Add YUVA420P -> RGBA/BGRA/ARGB/ABGR unscaled converterssdrik2009-03-202-10/+115
* Use a simpler and more general check for the gray case in the planarCopy func...sdrik2009-03-201-4/+1
* Initialize *srcContext, *dstContext, *outContext to NULL, avoids the warnings:diego2009-03-191-2/+2
* Remove useless casting in asm "m" operand.cehoyos2009-03-191-2/+2
* Allocate executable memory with VirtualAlloc() in Windows.ramiro2009-03-191-0/+10
* Drop unnecessary cast and cosmetically align.ramiro2009-03-191-5/+5
* Revertmichael2009-03-191-28/+18
* Fix 10l typo.michael2009-03-191-4/+4
* Unscaled converters formichael2009-03-194-1/+324
* Fix libswscale compilation on non-x86, hopefully without breaking MinGW64 again.reimar2009-03-181-18/+28
* swscale-example: use LFG instead of random()ramiro2009-03-181-1/+5
* Do not assume long is same width as x86 register.ramiro2009-03-185-36/+39
* Consistently use ff_ prefixes for internal symbols.diego2009-03-188-25/+25
* Add a fillPlane function to fill a plane with one constant valuesdrik2009-03-171-8/+11
* Don't write outside of the picture buffer in planarCopy in the gray casesdrik2009-03-171-2/+8
* Fix ff_bfin_yuv2rgb_get_func_ptr() vs. sws_ff_bfin_yuv2rgb_get_func_ptr() namediego2009-03-172-2/+2
* whitespace cosmetics: Consistently format function calls without spacediego2009-03-172-65/+67
* Add an alpha parameter to the YUV2RGBFUNC macro to ease the upcoming yuva2rgb...sdrik2009-03-161-12/+12
* Split YUV2RGB operands declaration into a separate macrosdrik2009-03-161-1/+6
* Make the source buffer operands parametrized in the YSCALEYUV2RGB_YA macrosdrik2009-03-141-7/+7
* Make MMX registers parametrized in the YSCALEYUV2PACKEDX_YA macrosdrik2009-03-111-11/+11
* In initMMX2HScaler, when chrDstW is not divisible by 4, the last filterPos el...sdrik2009-03-111-1/+1
* Mask all unused bits for packed pixel format instead of green and alpha mask ...kostya2009-03-091-1/+1
* Let the 4th plane reach the swScale functionsdrik2009-03-071-6/+8
* YUVA420P is a planar YUV formatsdrik2009-03-071-0/+1
* Fix bug introduced by me in r28756sdrik2009-03-051-2/+2
* Rewrite of rgb15to32 and rgb16to32 using fewer asm instructions and setting a...sdrik2009-03-041-38/+23
* remove the rest of x86 asm from LGPL buildhenry2009-03-031-2/+2
* Fix typo in comments.rathann2009-03-011-2/+2
* Add warnings to yuv2rgb_vis.c because alpha is set wrong (0 instead of 255).reimar2009-03-011-2/+4
* Make AltiVec code write alpha as 255 instead of 0 when converting to RGBAreimar2009-03-011-5/+5
* Fix braindead and broken way to calculate abase, fixes regression tests onreimar2009-03-011-1/+1
* When converting from a non alpha format to an alpha format, defaults to all o...sdrik2009-02-286-37/+40
* Add an isALPHA macro to check if pixel format has alpha channelsdrik2009-02-271-0/+7
* Use YUV420P code path for YUVA420P where appropriatesdrik2009-02-271-3/+4
* Refactor code for upcoming alpha patches.cehoyos2009-02-271-40/+42
* 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