summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Collapse)AuthorAgeFilesLines
* make the C code of the swscaler which i wrote LGPLmichael2006-08-304-0/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19600 b3059339-0415-0410-9bf9-f77b7e298cf2
* Allow to compile swscale testslucabe2006-08-212-12/+33
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19476 b3059339-0415-0410-9bf9-f77b7e298cf2
* Explicitly include libmpcodecs/img_format.h and libvo/fastmemcpy.h.diego2006-08-185-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19437 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move all internal -I parameters to the front of CFLAGS to avoid using externaldiego2006-08-171-1/+1
| | | | | | | | 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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19426 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation as a win32 shared library (libavutil must be explicitly linked)lucabe2006-08-161-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19416 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation with -no-PIC and without -fomit-frame-pointer (used byuau2006-08-151-1/+1
| | | | | | | | --enable-debug). Fix from Jason Tackaberry for his previous -fPIC patch. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19406 b3059339-0415-0410-9bf9-f77b7e298cf2
* -fPIC support for libswscalediego2006-08-152-112/+158
| | | | | | | patch by Jason Tackaberry, tack /at/ urandom /dot/ ca git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19402 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace asmalign.h hack by ASMALIGN cpp macros from config.h.diego2006-08-132-39/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19378 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use COMPILE_MMX2 instead of HAVE_MMX2 to determine whether to compileuau2006-08-121-4/+4
| | | | | | | | | MMX2 code, because the HAVE_ defines do not have sane values here if runtime cpudetection is used. Hopefully fixes runtime cpudetection breakage from r19339. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19374 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compilation with MMX disabled, the mmx_null and mmx_one constants don't ↵diego2006-08-111-3/+1
| | | | | | | | | need to be protected by HAVE_MMX. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19367 b3059339-0415-0410-9bf9-f77b7e298cf2
* Another PIX_FMT_ ---> IMGFMT_ conversionlucabe2006-08-051-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19342 b3059339-0415-0410-9bf9-f77b7e298cf2
* Do not assemble MMX, MMX2 or 3DNOW code unconditionally on X86 and X86_64.diego2006-08-053-10/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19339 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add support for ffmpeg's pixel format names in libswscalelucabe2006-07-311-0/+22
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19276 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment some #endif lines.diego2006-07-283-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19211 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix compile error due to extra "FF" at beginning of file in the FF{MIN,MAX}pacman2006-07-271-1/+1
| | | | | | | update git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19205 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace MIN() and MAX() with FFMIN() and FFMAX()lucabe2006-07-263-24/+21
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19186 b3059339-0415-0410-9bf9-f77b7e298cf2
* a tiny bit of cleanupmichael2006-07-241-77/+35
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19178 b3059339-0415-0410-9bf9-f77b7e298cf2
* vertical scaler with accurate rounding, some people on doom9 can see +-1 errorsmichael2006-07-244-42/+309
| | | | | | | | 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 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19177 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix typo introduced in the memalign->av_malloc conversion (there is nopacman2006-07-231-1/+1
| | | | | | | mv_malloc) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19174 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing part of the malloc -> av_malloc patch: memalign must be replaced as ↵reimar2006-07-231-28/+28
| | | | | | well! git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19173 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use libavutil in libswscale, and allow it to be built out of the mplayer treelucabe2006-07-207-88/+112
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19148 b3059339-0415-0410-9bf9-f77b7e298cf2
* make libswscale build system similar to the libav* onelucabe2006-07-101-43/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18994 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unneeded codelucabe2006-07-011-15/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18880 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move postproc ---> libswscalelucabe2006-06-3015-0/+12920
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18866 b3059339-0415-0410-9bf9-f77b7e298cf2