summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.c
Commit message (Expand)AuthorAgeFilesLines
* Fix 64 bit shared library compilation with MMX2 by properly using PIC mangling.diego2008-03-221-8/+8
* 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
* typosdiego2008-03-121-1/+1
* typodiego2008-03-101-1/+1
* Make av_class a pointer to const.benoit2008-03-101-1/+1
* Remove redundant swScaler: output from places where av_log()diego2008-03-101-4/+4
* change sws_format_name to return const char*, supress many warningsbcoudurier2008-03-061-1/+1
* remove redundant SwScaler text since av_log uses AVClass contextbcoudurier2008-03-061-37/+37
* One more (forgotten) fix for fixing sws_flags.michael2008-03-051-1/+1
* Turn ancient V offset numerical constants into named ones.michael2008-03-051-10/+16
* Discard two symbols from libswscale.cehoyos2008-02-221-3/+3
* More explicit unsupported pixel format error messages.benoit2008-02-151-2/+2
* Make dither4 & dither8 const.cehoyos2008-02-091-2/+2
* Make some assembler constants global instead of declaring them multiple times.reimar2008-01-291-13/+13
* Use DECLARE_ASM_CONST where possible in libswscale codereimar2008-01-281-26/+26
* Fix typo in commentreimar2008-01-211-1/+1
* Change (a == NULL) condition to (!a) and (a != NULL) condition to (a).benoit2008-01-171-13/+13
* Cosmetics: whitespacesbenoit2008-01-171-5/+5
* Remove non cosmetic spaces inside parentheses.benoit2008-01-171-8/+8
* Description: remove superfluous parentheses.benoit2008-01-171-5/+5
* Check param in sws_getCachedContext().benoit2008-01-171-1/+6
* comment typo fixesdiego2007-12-211-2/+2
* Make sure strides have positive values before converting.benoit2007-12-201-1/+1
* Revert wrong ARCH_BFIN --> HAVE_BFIN change.diego2007-09-271-1/+1
* add support for yuva420p colorspace (yuv420p + alpha)aurel2007-09-241-0/+4
* renaming ARCH_BFIN to HAVE_BFINmhoffman2007-08-311-1/+1
* typodiego2007-07-281-1/+1
* use YUV440P in swscalebenoit2007-07-181-0/+10
* license header consistency cosmeticsdiego2007-07-051-1/+1
* integrating ff_bfin_get_unscaled_swscale into the systemmhoffman2007-06-221-0/+5
* misc spelling fixesdiego2007-06-131-6/+6
* rename attribute_unused to av_unused as it is declared in common.hbenoit2007-05-301-1/+1
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.diego2007-05-281-3/+0
* ffmpeg -sws_flags command line option to set swscaler flagsivo2007-05-231-1/+34
* Blackfin optimized YUV420 to RGB CSC Color Space Converters.gpoirier2007-05-131-1/+3
* cosmetics; one test per line for all isXXX(x) macrosivo2007-05-111-16/+48
* cosmetics: indentation after previous patchbenoit2007-05-021-13/+13
* test if color conv fonction exists prior to using itbenoit2007-05-021-0/+3
* cosmetics attack, part II: Remove all tabs and prettyprint/reindent the code.diego2007-04-291-2179/+2178
* cosmetics: Remove trailing whitespace.diego2007-04-261-51/+51
* improve horizontal chroma resolution with palmichael2007-04-151-1/+4
* convert palette to yuv instead of converting each pixel after pal->rgbmichael2007-04-151-5/+22
* typodiego2007-04-071-1/+1
* Fix crash when trying to convert from or to RGBi (i<15) as in bgr8torgb24cehoyos2007-04-031-0/+7
* fix full range (jpeg yuv) chromamichael2007-03-181-1/+6
* Add PIX_FMT_PAL8 to isPacked().diego2007-03-081-1/+2
* a small step toward 4 plane supportmichael2007-03-021-6/+6
* copy src to prevent the user supplied argumet from being changedmichael2007-03-021-1/+2
* Add av_ prefix to clip functionsreimar2007-02-251-9/+9
* BGR/RGB4 byte formats as inputmichael2007-02-171-1/+2
* pal8 inputmichael2007-02-161-2/+3
* Pass a context to av_log(), when possiblelucabe2007-01-231-54/+61
* Add "support for both orderings of the slices (top->down / bottom->up)"lucabe2007-01-121-10/+4
* replace some av_malloc();memset(...,0,...) sequences with av_mallocz()lucabe2007-01-061-6/+3
* change all the occurrences of "FFMIN(FFMAX())" to clip_uint8() or clip()lucabe2006-12-261-9/+9
* Mark some variables as possibly unused to avoid warningslucabe2006-12-261-1/+1
* Add some explicit casts to avoid "assignment from incompatible pointer type"lucabe2006-12-261-12/+12
* Remove useless include (not needed now that libswscale uses libavutil)lucabe2006-12-221-5/+0
* Allow to compile swscale's non-SIMD code under the LGPL license.lucabe2006-12-201-10/+12
* Clarify that some of the non-SIMD code is now LGPLed.lucabe2006-11-191-2/+2
* Remove stray newline.diego2006-11-161-12/+12
* Add support for conversions from the rgb565 and rgb555 formatslucabe2006-11-021-1/+1
* Use common define for x86_32 and x86_64.diego2006-11-011-12/+12
* 16-bit grayscale supportkostya2006-10-241-0/+88
* Rename ABS macro to FFABS.diego2006-10-111-10/+10
* Change license headers to say 'FFmpeg' instead of 'this program'.diego2006-10-071-19/+21
* Add support for YUVJ formatslucabe2006-09-271-1/+22
* Remove the dependency of libswscale on img_format.hlucabe2006-09-171-195/+158
* Fix the PIX_FMT_* ---> IMGFMT_* conversion (PIX_FMT_RGB32 is IMGFMT_BGR32)lucabe2006-09-171-1/+1
* Add sws_getCachedContext(), which checks if context is valid or reallocs a ne...gpoirier2006-09-041-0/+34
* make the C code of the swscaler which i wrote LGPLmichael2006-08-301-0/+3
* Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.diego2006-08-181-1/+1
* Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compileuau2006-08-121-4/+4
* Another PIX_FMT_ ---> IMGFMT_ conversionlucabe2006-08-051-0/+1
* Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.diego2006-08-051-5/+5
* Add support for ffmpeg's pixel format names in libswscalelucabe2006-07-311-0/+22
* Comment some #endif lines.diego2006-07-281-6/+6
* Replace MIN() and MAX() with FFMIN() and FFMAX()lucabe2006-07-261-17/+14
* vertical scaler with accurate rounding, some people on doom9 can see +-1 errorsmichael2006-07-241-1/+11
* Fix typo introduced in the memalign->av_malloc conversion (there is nopacman2006-07-231-1/+1
* Missing part of the malloc -> av_malloc patch: memalign must be replaced as w...reimar2006-07-231-28/+28
* Use libavutil in libswscale, and allow it to be built out of the mplayer treelucabe2006-07-201-57/+73
* Move postproc ---> libswscalelucabe2006-06-301-0/+2707