summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* Replace manual gcc version check by AV_GCC_VERSION_AT_LEAST macro.diego2009-09-221-1/+1
* Cleanup buffer debugs in swScale().ramiro2009-09-161-14/+19
* Use correct buffers in vertical scaler in unscaled YV12 case.ramiro2009-09-161-3/+3
* Reset slice direction at end of each frame.ramiro2009-09-131-0/+8
* Remove ; after while(0) in macros.ramiro2009-09-121-3/+3
* Document that slices can be bottom to top or top to bottom.ramiro2009-09-091-1/+1
* Indent.ramiro2009-09-072-53/+53
* Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelramiro2009-09-061-20/+20
* Indent.ramiro2009-09-051-6/+6
* Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().ramiro2009-09-053-54/+54
* Curly brackets cosmetics for previous commit.ramiro2009-08-291-6/+3
* Check for return value of initFilter().ramiro2009-08-291-8/+12
* Revert mistakenly commited hunk.ramiro2009-08-291-3/+2
* swscale: Check for return values of malloc.ramiro2009-08-293-24/+47
* swscale-example: Free memory used by input data.ramiro2009-08-291-0/+2
* Restore comment that was partially removed.ramiro2009-08-291-0/+1
* swscale-example: Rename src->ref so as to not confuse with src being used in ...ramiro2009-08-231-2/+2
* swscale-example: Use SWS_BILINEAR instead of hardcoded value.ramiro2009-08-231-1/+1
* Fix inconsistent indentation.ramiro2009-08-221-2/+2
* Check return values of sws_allocVec() and sws_getConstVec().ramiro2009-08-201-0/+21
* Free initial swscale context, too. Avoids a valgrind warning.reimar2009-08-191-0/+1
* Remove useless casts of malloc return value.reimar2009-08-191-3/+3
* Introduce and use sws_allocVec().ramiro2009-08-192-18/+23
* Reuse sws_getConstVec() where possible.ramiro2009-08-191-34/+10
* swscale-example: Make selection of dstW, dstH, and flags more clear.ramiro2009-08-171-8/+12
* More indentation changes leftover from r29522:ramiro2009-08-162-693/+693
* Cosmetics:ramiro2009-08-1615-766/+579
* Indent libswscale:ramiro2009-08-168-1756/+1756
* Indent.ramiro2009-08-151-4/+4
* Vertical yuv -> yuv16 scaler.ramiro2009-08-142-0/+101
* BGR32 MMX special convertor.ramiro2009-08-142-21/+85
* Indent.ramiro2009-08-131-20/+20
* swscale-example: Don't check for chroma planes in mono formats.ramiro2009-08-131-1/+6
* MMX2 horizontal scaler: Determine code size at runtime.ramiro2009-08-132-14/+24
* Protect mmx2 filter code buffers so they are not executable and writeable atramiro2009-08-131-2/+7
* Remove duplicate define (it is the same in the lum code).ramiro2009-08-131-21/+0
* Rename "funny" code to "mmx2 filter" code.ramiro2009-08-133-50/+50
* Indent.ramiro2009-08-131-2/+2
* swscale-example: Remove hack to end loop by setting variables to break.ramiro2009-08-131-13/+5
* swscale-example: Don't return random value from main().ramiro2009-08-131-1/+1
* swscale-example: Check for Gray formats.ramiro2009-08-131-3/+9
* Remove disabled debug code.diego2009-08-101-9/+0
* Put some altivec code under COMPILE_ALTIVEC, and not HAVE_ALTIVEC.ramiro2009-08-091-2/+2
* Remove 'offset' argument from PUTRGB* macros since it's unneeded and causedkostya2009-08-091-66/+66
* Remove disabled crufty code.diego2009-08-083-42/+0
* Fix regression when converting to nv12/nv21.cehoyos2009-08-011-1/+3
* MMX2 scaler: Remove {} block leftover from factorization in initMMX2Scaler().ramiro2009-07-281-19/+16
* MMX2 scaler: factorize initMMX2Scaler().ramiro2009-07-281-30/+10
* MMX2 scaler: add variable to ease factorization of initMMX2Scaler().ramiro2009-07-281-3/+4
* Indent.ramiro2009-07-281-45/+45
* Remove duplicate horizontal scaling when there aren't enough lines in a sliceramiro2009-07-281-52/+15
* Remove useless code.ramiro2009-07-281-3/+1
* Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use themramiro2009-07-272-85/+79
* Factorize x86 fast_bilinear assembly.ramiro2009-07-271-24/+12
* Fix assembly comments for x86 fast_bilinear so they match the C code.ramiro2009-07-271-16/+16
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANmru2009-07-264-16/+15
* Remove unnecessary #include <unistd.h>mru2009-07-231-1/+0
* Remove unused variables.ramiro2009-07-212-4/+0
* Remove dependency from swscale_internal.h to lavu/internal.h, it is no longerramiro2009-07-092-7/+10
* The AltiVec code in libswscale no longer is under GPL.diego2009-07-051-1/+1
* Use enum PixelFormat in sws_format_name() prototypemru2009-07-011-1/+1
* AltiVec code and runtime cpudetect do not require CONFIG_GPL.diego2009-06-251-5/+5
* The AltiVec optimizations of libswscale are no longer under GPL.diego2009-06-251-1/+1
* PPC: Make sure that COMPILE_C is not deactivated if RUNTIME_CPUDETECT is set.diego2009-06-251-2/+1
* Do not call rgb2rgbWrapper() for rgb48*, there is no special converter vitor2009-06-171-0/+2
* Kill warnings of possibly unused variables by using av_unused.ramiro2009-06-111-8/+8
* Fix compilation: #undef standard library functions that arediego2009-06-111-0/+6
* Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.diego2009-06-111-0/+1
* Remove '\p' doxygen markup, as it should improve plain text doxystefano2009-06-061-16/+15
* Use DECLARE_ALIGNED macro instead of __attribute__((aligned)) for ppc code.ramiro2009-06-042-6/+6
* Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.ramiro2009-06-041-2/+2
* Use DECLARE_ALIGNED macro instead of gcc __attribute__.ramiro2009-06-042-39/+39
* Testing RGB48 variants requires bigger stride in swscale-example.ckostya2009-06-021-0/+4
* YUV into RGB48 BE/LE conversion supportkostya2009-06-022-0/+57
* Partial (low bits ignored, no direct transcoding into other RGB formats) supportkostya2009-06-023-1/+61
* Move colorspace conversion functions implemented in pure C from templatekostya2009-05-252-137/+138
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.kostya2009-05-191-0/+2
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).kostya2009-05-192-0/+7
* 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.ceh