summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Expand)AuthorAgeFilesLines
* Add av_ prefix to clip functionsreimar2007-02-254-16/+16
* cosmetics: typo fixes, usefuLL --> useful and aswell --> as welldiego2007-02-221-1/+1
* negative stride and h_size-=8 fixmichael2007-02-171-4/+4
* BGR/RGB4 byte formats as inputmichael2007-02-173-5/+6
* pal8 inputmichael2007-02-162-8/+54
* stray fflush spotted by Aurellu_zero2007-01-281-1/+1
* Make example and test build and link correctlylu_zero2007-01-281-2/+2
* av_logifylu_zero2007-01-281-8/+9
* Simplify conditional compilation handling.diego2007-01-251-6/+3
* Pass a context to av_log(), when possiblelucabe2007-01-235-73/+78
* Fix license headers and FSF postal address.diego2007-01-223-7/+6
* cosmetics: typo pallete --> palettediego2007-01-131-3/+3
* deprecate sws_scale_ordered(), as it now is a duplicate of sws_scale()lucabe2007-01-121-1/+3
* 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-263-15/+15
* Mark some variables as possibly unused to avoid warningslucabe2006-12-262-3/+5
* Add some explicit casts to avoid "assignment from incompatible pointer type"lucabe2006-12-262-15/+15
* Add some other casts, to remove void pointers arithmeticlucabe2006-12-261-3/+3
* Add some explicit casts to avoid some warningslucabe2006-12-261-4/+4
* Remove some void pointers arithmeticlucabe2006-12-261-3/+3
* Clarify that yuv2rgb_init.c cannot be used under LGPLlucabe2006-12-221-2/+0
* Remove useless include (not needed now that libswscale uses libavutil)lucabe2006-12-221-5/+0
* Fix compilation of non-MMX code with gcc 2.95lucabe2006-12-201-3/+3
* Allow to compile swscale's non-SIMD code under the LGPL license.lucabe2006-12-204-14/+428
* Change "p" asm constraints to "g", since "p" was a no longer necessary hack toreimar2006-11-271-2/+2
* Clarify that some of the non-SIMD code is now LGPLed.lucabe2006-11-197-34/+34
* forgotten 2 converters (yeah svn up, svn di svn ci isnt enough i should actua...michael2006-11-161-11/+11
* fixing the lamest bug in swscale, all the rgb/bgr->* code did 2x2 downsamplin...michael2006-11-161-91/+52
* Remove stray newline.diego2006-11-161-12/+12
* Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."lucabe2006-11-091-1/+1
* Fix MacIntel build: "/nop" is illegal on Apple's older version of GASgpoirier2006-11-072-10/+6
* Add support for conversions from the rgb565 and rgb555 formatslucabe2006-11-022-1/+94
* Do not mix declarations and statements.diego2006-11-011-30/+37
* Use common define for x86_32 and x86_64.diego2006-11-015-21/+21
* 16-bit grayscale supportkostya2006-10-243-3/+94
* Properly set EXTRALIBSlucabe2006-10-231-0/+2
* Rename ABS macro to FFABS.diego2006-10-111-10/+10
* Move CFLAGS handling to common.mak.diego2006-10-111-4/+0
* Change license headers to say 'FFmpeg' instead of 'this program'.diego2006-10-0711-151/+174
* Replace -I.. by -I$(BUILD_ROOT).diego2006-10-071-2/+1
* Simplify test program build.diego2006-10-051-3/+1
* Test programs depend on $(LIB).diego2006-10-051-2/+2
* FFmpeg uses -D_ISOC9X_SOURCE and not -D_GNU_SOURCE in CFLAGS.diego2006-10-041-1/+1
* Remove cs_test and swscale-example on clean.diego2006-10-041-0/+3
* Remove redundant EXTRALIBS declaration.diego2006-10-041-1/+0
* Simplify compilation call by using $(EXTRALIBS).diego2006-10-041-2/+2
* Fix warnings:diego2006-10-041-0/+2
* Fix warnings:diego2006-10-041-1/+2
* make some global var static (fix a build failure with shared lib on x86_64)aurel2006-10-031-12/+12
* Fix unused variable warning when compiling with MMX disabled.diego2006-10-031-1/+1
* Remove unused variables.diego2006-10-012-4/+1
* Add support for YUVJ formatslucabe2006-09-271-1/+22
* Improve swscale-example to test conversions between all the possiblelucabe2006-09-241-39/+44
* Remove the dependency of libswscale on img_format.hlucabe2006-09-178-342/+351
* Fix the PIX_FMT_* ---> IMGFMT_* conversion (PIX_FMT_RGB32 is IMGFMT_BGR32)lucabe2006-09-171-1/+1
* Add proper GPL headers.diego2006-09-092-0/+30
* Add official GPL header to make license explicit as discussed on ffmpeg-devel.diego2006-09-062-2/+30
* Add sws_getCachedContext(), which checks if context is valid or reallocs a ne...gpoirier2006-09-042-0/+39
* make the C code of the swscaler which i wrote LGPLmichael2006-08-304-0/+12
* Allow to compile swscale testslucabe2006-08-212-12/+33
* Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.diego2006-08-185-5/+5
* Move all internal -I parameters to the front of CFLAGS to avoid using externaldiego2006-08-171-1/+1
* Fix compilation as a win32 shared library (libavutil must be explicitly linked)lucabe2006-08-161-0/+1
* Fix compilation with -no-PIC and without -fomit-frame-pointer (used byuau2006-08-151-1/+1
* -fPIC support for libswscalediego2006-08-152-112/+158
* Replace asmalign.h hack by ASMALIGN cpp macros from config.h.diego2006-08-132-39/+35
* Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compileuau2006-08-121-4/+4
* Fix compilation with MMX disabled, the mmx_null and mmx_one constants don't n...diego2006-08-111-3/+1
* 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-053-10/+12
* Add support for ffmpeg's pixel format names in libswscalelucabe2006-07-311-0/+22
* Comment some #endif lines.diego2006-07-283-9/+9
* Fix compile error due to extra "FF" at beginning of file in the FF{MIN,MAX}pacman2006-07-271-1/+1
* Replace MIN() and MAX() with FFMIN() and FFMAX()lucabe2006-07-263-24/+21
* a tiny bit of cleanupmichael2006-07-241-77/+35
* vertical scaler with accurate rounding, some people on doom9 can see +-1 errorsmichael2006-07-244-42/+309
* 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-207-88/+112
* make libswscale build system similar to the libav* onelucabe2006-07-101-43/+13
* Remove unneeded codelucabe2006-07-011-15/+0
* Move postproc ---> libswscalelucabe2006-06-3015-0/+12920