summaryrefslogtreecommitdiff
path: root/libswscale/swscale_template.c
Commit message (Collapse)AuthorAge
* license header consistency cosmeticsDiego Biurrun2007-07-05
| | | | Originally committed as revision 23722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* comment grammar fixesDiego Biurrun2007-06-28
| | | | Originally committed as revision 23685 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* remove the need of one extra shift in rgb16ToUVIvo van Poorten2007-05-09
| | | | Originally committed as revision 23281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix rgb15ToUV. Correct order of components and use one shift less.Ivo van Poorten2007-05-09
| | | | Originally committed as revision 23279 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.Diego Biurrun2007-04-30
| | | | Originally committed as revision 23179 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: Remove trailing whitespace.Diego Biurrun2007-04-26
| | | | Originally committed as revision 23147 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* improve horizontal chroma resolution with palMichael Niedermayer2007-04-15
| | | | Originally committed as revision 22994 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* convert palette to yuv instead of converting each pixel after pal->rgbMichael Niedermayer2007-04-15
| | | | Originally committed as revision 22993 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* typoDiego Biurrun2007-04-07
| | | | Originally committed as revision 22932 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix a possible crash on 64 bit systems when the lumSrcPtr or chrSrcPtrReimar Döffinger2007-03-01
| | | | | | does not fit in 32 bits. The SWS_ACCURATE_RND is still broken though. Originally committed as revision 22401 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add av_ prefix to clip functionsReimar Döffinger2007-02-25
| | | | Originally committed as revision 22339 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* BGR/RGB4 byte formats as inputMichael Niedermayer2007-02-17
| | | | | | fixing isRGB/BGR() for the byte formats Originally committed as revision 22244 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* pal8 inputMichael Niedermayer2007-02-16
| | | | | | this is not optimized or anything (that is easy to add just use the existing unscaled converters if possible ...) Originally committed as revision 22236 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Pass a context to av_log(), when possibleLuca Abeni2007-01-23
| | | | Originally committed as revision 21999 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* change all the occurrences of "FFMIN(FFMAX())" to clip_uint8() or clip()Luca Abeni2006-12-26
| | | | Originally committed as revision 21776 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add some explicit casts to avoid some warningsLuca Abeni2006-12-26
| | | | Originally committed as revision 21772 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation of non-MMX code with gcc 2.95Luca Abeni2006-12-20
| | | | Originally committed as revision 21702 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change "p" asm constraints to "g", since "p" was a no longer necessary hack toReimar Döffinger2006-11-27
| | | | | | make AMD64 compilation work and ICC can not handle "p". Originally committed as revision 21341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Clarify that some of the non-SIMD code is now LGPLed.Luca Abeni2006-11-19
| | | | | | All the authours of such code agreed. Originally committed as revision 21045 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* forgotten 2 converters (yeah svn up, svn di svn ci isnt enough i should ↵Michael Niedermayer2006-11-16
| | | | | | actually look at the code after svn up not just the diff ...) Originally committed as revision 20962 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* fixing the lamest bug in swscale, all the rgb/bgr->* code did 2x2 ↵Michael Niedermayer2006-11-16
| | | | | | downsampling for chroma, it should just be 2x1 (the rest of the code also belived its 2x1 ...) Originally committed as revision 20961 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix MacIntel build: "/nop" is illegal on Apple's older version of GASNigel Pearson2006-11-07
| | | | | | | | | Patch by Nigel Pearson % nigel A ind P tansu P com P au % Original thread: Date: Nov 6, 2006 10:43 PM Subject: [Ffmpeg-devel] [PATCH] swscale uses /nop, illegal for old versions of GAS Originally committed as revision 20740 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for conversions from the rgb565 and rgb555 formatsLuca Abeni2006-11-02
| | | | Originally committed as revision 20605 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use common define for x86_32 and x86_64.Diego Biurrun2006-11-01
| | | | Originally committed as revision 20592 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* 16-bit grayscale supportKostya Shishkov2006-10-24
| | | | Originally committed as revision 20427 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
* 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 the dependency of libswscale on img_format.hLuca Abeni2006-09-17
| | | | Originally committed as revision 19878 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
* 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
* 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
* Move postproc ---> libswscaleLuca Abeni2006-06-30
Originally committed as revision 18866 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale