summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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