summaryrefslogtreecommitdiff
path: root/libswscale
Commit message (Collapse)AuthorAge
* 16-bit grayscale supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 20427 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Properly set EXTRALIBSLuca Abeni2006-10-23
| | | | | | (fixes compilation of shared libswscale on cygwin and other platforms) Originally committed as revision 20413 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename ABS macro to FFABS.Diego Biurrun2006-10-11
| | | | Originally committed as revision 20169 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move CFLAGS handling to common.mak.Diego Biurrun2006-10-11
| | | | Originally committed as revision 20154 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change license headers to say 'FFmpeg' instead of 'this program'.Diego Biurrun2006-10-07
| | | | Originally committed as revision 20100 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace -I.. by -I$(BUILD_ROOT).Diego Biurrun2006-10-07
| | | | Originally committed as revision 20094 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify test program build.Diego Biurrun2006-10-05
| | | | Originally committed as revision 20073 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Test programs depend on $(LIB).Diego Biurrun2006-10-05
| | | | Originally committed as revision 20059 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* FFmpeg uses -D_ISOC9X_SOURCE and not -D_GNU_SOURCE in CFLAGS.Diego Biurrun2006-10-04
| | | | Originally committed as revision 20057 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove cs_test and swscale-example on clean.Diego Biurrun2006-10-04
| | | | Originally committed as revision 20040 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove redundant EXTRALIBS declaration.Diego Biurrun2006-10-04
| | | | Originally committed as revision 20039 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify compilation call by using $(EXTRALIBS).Diego Biurrun2006-10-04
| | | | Originally committed as revision 20038 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix warnings:Diego Biurrun2006-10-04
| | | | | | | swscale-example.c:87: warning: implicit declaration of function 'sws_format_name' swscale-example.c:214: warning: implicit declaration of function 'sws_rgb2rgb_init' Originally committed as revision 20037 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix warnings:Diego Biurrun2006-10-04
| | | | | | | cs_test.c:62: warning: return type defaults to 'int' cs_test.c:64: warning: implicit declaration of function 'memalign' Originally committed as revision 20036 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* make some global var static (fix a build failure with shared lib on x86_64)Aurelien Jacobs2006-10-03
| | | | Originally committed as revision 20024 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix unused variable warning when compiling with MMX disabled.Diego Biurrun2006-10-03
| | | | Originally committed as revision 20021 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused variables.Diego Biurrun2006-10-01
| | | | Originally committed as revision 20012 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for YUVJ formatsLuca Abeni2006-09-27
| | | | Originally committed as revision 19993 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Improve swscale-example to test conversions between all the possibleLuca Abeni2006-09-24
| | | | | | pixel formats Originally committed as revision 19965 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove the dependency of libswscale on img_format.hLuca Abeni2006-09-17
| | | | Originally committed as revision 19878 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix the PIX_FMT_* ---> IMGFMT_* conversion (PIX_FMT_RGB32 is IMGFMT_BGR32)Luca Abeni2006-09-17
| | | | Originally committed as revision 19875 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add proper GPL headers.Diego Biurrun2006-09-09
| | | | Originally committed as revision 19772 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add official GPL header to make license explicit as discussed on ffmpeg-devel.Diego Biurrun2006-09-06
| | | | Originally committed as revision 19709 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add sws_getCachedContext(), which checks if context is valid or reallocs a ↵Víctor Paesa2006-09-04
| | | | | | | | | | | new one instead. Patch by Victor Paesa <wzrlpy@arsystel.com> Original thread: Date: Aug 31, 2006 7:15 PM Subject: [Ffmpeg-devel] [PATCH] Add sws_getCachedContext() to swscale library Originally committed as revision 19667 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* make the C code of the swscaler which i wrote LGPLMichael Niedermayer2006-08-30
| | | | Originally committed as revision 19600 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Allow to compile swscale testsLuca Abeni2006-08-21
| | | | Originally committed as revision 19476 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.Diego Biurrun2006-08-18
| | | | Originally committed as revision 19437 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move all internal -I parameters to the front of CFLAGS to avoid using externalDiego Biurrun2006-08-17
| | | | | | | header files that happen to have the same name as internal ones. based on a patch by Vladislav Naumov, vladislav.naumov **at** gmail **dot** com Originally committed as revision 19426 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation as a win32 shared library (libavutil must be explicitly linked)Luca Abeni2006-08-16
| | | | Originally committed as revision 19416 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation with -no-PIC and without -fomit-frame-pointer (used byUoti Urpala2006-08-15
| | | | | | | --enable-debug). Fix from Jason Tackaberry for his previous -fPIC patch. Originally committed as revision 19406 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* -fPIC support for libswscaleJason Tackaberry2006-08-15
| | | | | | patch by Jason Tackaberry, tack /at/ urandom /dot/ ca Originally committed as revision 19402 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace asmalign.h hack by ASMALIGN cpp macros from config.h.Diego Biurrun2006-08-13
| | | | Originally committed as revision 19378 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compileUoti Urpala2006-08-12
| | | | | | | | MMX2 code, because the HAVE_ defines do not have sane values here if runtime cpudetection is used. Hopefully fixes runtime cpudetection breakage from r19339. Originally committed as revision 19374 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation with MMX disabled, the mmx_null and mmx_one constants don't ↵Diego Biurrun2006-08-11
| | | | | | | | need to be protected by HAVE_MMX. Originally committed as revision 19367 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Another PIX_FMT_ ---> IMGFMT_ conversionLuca Abeni2006-08-05
| | | | Originally committed as revision 19342 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.Diego Biurrun2006-08-05
| | | | Originally committed as revision 19339 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for ffmpeg's pixel format names in libswscaleLuca Abeni2006-07-31
| | | | Originally committed as revision 19276 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Comment some #endif lines.Diego Biurrun2006-07-28
| | | | Originally committed as revision 19211 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compile error due to extra "FF" at beginning of file in the FF{MIN,MAX}Alan Curry2006-07-27
| | | | | | update Originally committed as revision 19205 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace MIN() and MAX() with FFMIN() and FFMAX()Luca Abeni2006-07-26
| | | | Originally committed as revision 19186 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* a tiny bit of cleanupMichael Niedermayer2006-07-24
| | | | Originally committed as revision 19178 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* vertical scaler with accurate rounding, some people on doom9 can see +-1 errorsMichael Niedermayer2006-07-24
| | | | | | | the +-1 issue is limited to >2tap vertical filters, so bilinear upscale was unaffected the new code is sometime faster sometimes slower but the difference is significant (~20%) so its optional and enabled with arnd=1 Originally committed as revision 19177 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo introduced in the memalign->av_malloc conversion (there is noAlan Curry2006-07-23
| | | | | | mv_malloc) Originally committed as revision 19174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Missing part of the malloc -> av_malloc patch: memalign must be replaced as ↵Reimar Döffinger2006-07-23
| | | | | | well! Originally committed as revision 19173 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use libavutil in libswscale, and allow it to be built out of the mplayer treeLuca Abeni2006-07-20
| | | | Originally committed as revision 19148 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* make libswscale build system similar to the libav* oneLuca Abeni2006-07-10
| | | | Originally committed as revision 18994 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unneeded codeLuca Abeni2006-07-01
| | | | Originally committed as revision 18880 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move postproc ---> libswscaleLuca Abeni2006-06-30
Originally committed as revision 18866 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale