summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* 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
* Split AVOption/AVClass in a separate file. SoC Patch from Keiji Costantinilu_zero2008-07-093-40/+3
* Remove ASSERT() macro. SoC Patch from Keiji Costantinilu_zero2008-07-062-33/+27
* Reindent. SoC Patch from Keiji Costantinilu_zero2008-07-061-45/+42
* Split simpleCopy into packedCopy and planarCopy. SoC Patch from Keiji Costantinilu_zero2008-07-061-8/+14
* spelling/grammar/wording overhauldiego2008-07-0413-176/+178
* whitespace cosmeticsdiego2008-07-042-82/+81
* Place license header at the top of the file for consistency.diego2008-07-041-21/+21
* OBJS should end in .o, not .c.diego2008-06-081-1/+1
* VIS OBJS should end in .o, not .c; patch by Jan Knutar, jknutar nic fi.diego2008-06-081-1/+1
* Add missing #include, patch by Jan Knutar, jknutar nic fi.diego2008-06-081-0/+1
* restore needed cast to correct type with constbcoudurier2008-06-011-2/+2
* cast to correct type, suppress warningsbcoudurier2008-06-011-1/+1
* cast to correct type, suppress warningsbcoudurier2008-06-011-1/+1
* cast to correct type, suppress warningbcoudurier2008-06-011-1/+1
* cast to correct type, suppress warningsbcoudurier2008-06-011-2/+2
* add const, suppress warningsbcoudurier2008-06-011-2/+2
* remove useless castsbcoudurier2008-06-011-4/+4
* add const, suppress warningsbcoudurier2008-06-011-6/+6
* add const, suppress warningsbcoudurier2008-06-011-10/+11
* remove useless castsbcoudurier2008-06-011-6/+6
* Remove in_asm_used_var_warning_killer()superdump2008-05-091-10/+0
* Use full path for #includes from another directory.diego2008-05-094-6/+6
* cosmetics: sort lines (correctly)diego2008-05-051-5/+2
* cosmetics: Shuffle lines around and add empty lines.lu_zero2008-05-041-1/+3
* Build sparc arch specific code using the Makefilelu_zero2008-05-042-8/+3
* cosmetics: alphabetical orderdiego2008-05-041-3/+1
* cosmetics: __asm__ __volatile__ --> asm volatilediego2008-04-171-12/+12
* Relicense test/example files as LGPL with Michael's permission.diego2008-04-132-16/+16
* non-recursive makefilesmru2008-04-071-7/+6
* Fix wrong #endif comment.diego2008-03-291-1/+1
* Classify mlib as a configurable option, not as a hardware feature.diego2008-03-251-2/+2
* Fix 64 bit shared library compilation with MMX2 by properly using PIC mangling.diego2008-03-221-8/+8
* cosmetics: comment typo fixesdiego2008-03-221-1/+2
* Remove redundant ARCH_POWERPC #ifdef around HAVE_ALTIVEC.diego2008-03-181-2/+0
* Fix a typo that causes an assertion to always fail.zuxy2008-03-171-1/+1
* typodiego2008-03-151-1/+1
* Remove the unused function roundToInt16. It is a duplicate of the same functiondiego2008-03-151-7/+0
* typosdiego2008-03-122-2/+2
* Mark Y variable in EPILOG macro as av_unused to avoid unused variable warnings.diego2008-03-111-2/+1
* typodiego2008-03-101-1/+1
* Make av_class a pointer to const.benoit2008-03-102-2/+2
* define VOF as double of VOFW.benoit2008-03-101-1/+1
* Remove redundant swScaler: output from places where av_log()diego2008-03-101-4/+4
* cosmetics: Remove useless empty line.diego2008-03-081-1/+0
* cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.diego2008-03-081-2/+1
* simplify library version handlingmru2008-03-071-2/+0
* consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentmru2008-03-061-1/+1
* change sws_format_name to return const char*, supress many warningsbcoudurier2008-03-063-3/+3
* remove redundant SwScaler text since av_log uses AVClass contextbcoudurier2008-03-062-39/+39
* One more (forgotten) fix for fixing sws_flags.michael2008-03-051-1/+1
* Turn ancient V offset numerical constants into named ones.michael2008-03-053-72/+81
* less preprocessor magic in version number macrosmru2008-02-261-4/+10
* Fix outdated comment.diego2008-02-251-1/+1
* #include "libavutil/avutil.h" in swscale.hmru2008-02-251-1/+1
* __asm __volatile -> asm volatile part 3reimar2008-02-242-85/+85
* Discard two symbols from libswscale.cehoyos2008-02-225-23/+18
* Clean up lib* version definitionsmru2008-02-191-2/+4
* remove duplicate AV_STRINGIFY() definitionmru2008-02-171-3/+0
* FLAT objects cannot have multiple sections, so using the L1 attributes breaksdiego2008-02-163-4/+16
* More explicit unsupported pixel format error messages.benoit2008-02-151-2/+2
* typodiego2008-02-131-1/+1
* Make dither4 & dither8 const.cehoyos2008-02-092-4/+4
* Make some assembler constants global instead of declaring them multiple times.reimar2008-01-296-60/+43
* Use DECLARE_ASM_CONST where possible in libswscale codereimar2008-01-283-73/+73
* Fix typo in commentreimar2008-01-211-1/+1
* Change (a == NULL) condition to (!a) and (a != NULL) condition to (a).benoit2008-01-173-19/+19
* Remove some useless parentheses.benoit2008-01-173-6/+6
* Cosmetics: whitespacesbenoit2008-01-176-69/+69
* Remove non cosmetic spaces inside parentheses.benoit2008-01-176-31/+31
* Description: remove superfluous parentheses.benoit2008-01-171-5/+5
* Check param in sws_getCachedContext().benoit2008-01-171-1/+6
* comment typo fixesdiego2007-12-212-4/+4
* Make sure strides have positive values before converting.benoit2007-12-201-1/+1
* Add missing declarations for AltiVec functions, fixes the warnings:diego2007-12-081-0/+7
* Fix 'make checkheaders' on AltiVec-enabled systems.diego2007-12-071-0/+2
* Fix some spelling typosdiego2007-12-021-2/+2
* Comment some #endif directives.diego2007-11-301-14/+14
* comment spelling/grammar fixesdiego2007-11-221-36/+31
* The function names of [rgb|bgr]1[56]to[UV|Y] had rgb<->bgr flipped.diego2007-11-041-8/+8
* Rename LIB to LIBNAME for consistency.diego2007-10-181-2/+2
* 1l: Update wrong #endif comment.diego2007-10-181-1/+1
* Add FFMPEG_ prefix to all multiple inclusion guards.diego2007-10-183-9/+9
* cosmetics: Fix AltiVec spelling.diego2007-10-021-1/+1
* Revert wrong ARCH_BFIN --> HAVE_BFIN change.diego2007-09-273-3/+3
* add support for yuva420p colorspace (yuv420p + alpha)aurel2007-09-241-0/+4
* cosmetic (get rid of _ at the start of local variable names)michael2007-09-241-24/+24
* renaming ARCH_BFIN to HAVE_BFINmhoffman2007-08-313-3/+3
* cosmetics: Sort some lines, whitespace changes.diego2007-08-301-4/+4
* Move Apple gcc AltiVec vector declaration syntax to libavutil.diego2007-08-242-12/+0
*