summaryrefslogtreecommitdiff
path: root/libswscale
Commit message (Collapse)AuthorAge
* Use sws_printVec2() instead of the deprecated sws_printVec().Stefano Sabatini2009-02-14
| | | | Originally committed as revision 28567 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Implement sws_printVec2() and deprecate sws_printVec().Stefano Sabatini2009-02-14
| | | | Originally committed as revision 28566 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_normalizeVec().Stefano Sabatini2009-02-14
| | | | Originally committed as revision 28565 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make hScale_altivec_real() trim its output like other implementations doKostya Shishkov2009-02-14
| | | | Originally committed as revision 28556 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Some AltiVec functions in SwScaler produce different output than theirKostya Shishkov2009-02-14
| | | | | | counterparts in pure C, so don't invoke them in bitexact mode. Originally committed as revision 28555 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Apply misc fixes for sws_getCachedContext() documentation.Stefano Sabatini2009-02-12
| | | | Originally committed as revision 28537 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Bump micro version, related to r28491.Stefano Sabatini2009-02-12
| | | | | | | See the thread: "[FFmpeg-devel] [PATCH] Explicitely declare {dst, src}Format sws_get*Context() params as enum PixelFormat". Originally committed as revision 28536 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_getContext().Stefano Sabatini2009-02-11
| | | | Originally committed as revision 28535 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_getIdentityVec().Stefano Sabatini2009-02-11
| | | | Originally committed as revision 28533 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move sws_getGaussianVec() documentation from swscale.c to swscale.h.Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28528 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_cloneVec().Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28527 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo: lenght -> length.Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28526 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_scaleVec().Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28525 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document sws_getConstVec().Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28524 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move documentation of sws_getCachedContext() from swscale.c toStefano Sabatini2009-02-10
| | | | | | swscale.h. Originally committed as revision 28523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove pointless comment regarding sws_scale_ordered().Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a @deprecated notice to swscale_get_ordered().Stefano Sabatini2009-02-10
| | | | Originally committed as revision 28521 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unnecessary emms Assembler instructions.Diego Biurrun2009-02-10
| | | | Originally committed as revision 28518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document coeff and length fields in SwsVector.Stefano Sabatini2009-02-09
| | | | Originally committed as revision 28512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert #undefining system functions, it is not necessary.Diego Biurrun2009-02-09
| | | | Originally committed as revision 28502 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add config.h #include for ARCH_X86 definition.Diego Biurrun2009-02-09
| | | | Originally committed as revision 28500 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add #undefs to reenable system functions that are normally forbidden in otherDiego Biurrun2009-02-09
| | | | | | parts of FFmpeg but OK in this test program. Fixes the build. Originally committed as revision 28499 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Drop DECLARE_ALIGNED from extern declarations. It creates trouble whenDiego Biurrun2009-02-09
| | | | | | swscale_internal.h is #included without HAVE_AV_CONFIG_H defined. Originally committed as revision 28498 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefix visible YUV2RGB functions with sws_Kostya Shishkov2009-02-09
| | | | Originally committed as revision 28496 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Give better name to Inverse_Table_6_9Kostya Shishkov2009-02-09
| | | | Originally committed as revision 28495 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove file name from file headers.Diego Biurrun2009-02-09
| | | | | | It provides no useful information and breaks on renames. Originally committed as revision 28494 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Drop the deprecated sws_scale_ordered() at the next major versionStefano Sabatini2009-02-08
| | | | | | bump. Originally committed as revision 28492 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace int type with enum PixelFormat for the dstFormat/srcFormatStefano Sabatini2009-02-08
| | | | | | | params of the sws_getContext() and sws_getCachedContext() declarations, consistent with the implementation. Originally committed as revision 28491 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix a typo: lumaSarpen -> lumaSharpen.Stefano Sabatini2009-02-08
| | | | Originally committed as revision 28490 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: Remove period after copyright statement non-sentence.Diego Biurrun2009-02-01
| | | | Originally committed as revision 28444 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 28414 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* HAVE_3DNOW --> HAVE_AMD3DNOW to sync with latest configure changes.Diego Biurrun2009-01-25
| | | | Originally committed as revision 28358 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Declare struct SwsContext before using it, fixes the checkheaders warning:Diego Biurrun2009-01-25
| | | | | | | libswscale/swscale_internal.h:58: warning: `struct SwsContext' declared inside parameter list libswscale/swscale_internal.h:58: warning: its scope is only this definition or declaration, which is probably not what you want Originally committed as revision 28353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Disable C code when compiling AltiVec code, fixes the warning:Diego Biurrun2009-01-25
| | | | | | swscale_template.c:2623: warning: `swScale_C' defined but not used Originally committed as revision 28352 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* spelling/grammar cosmeticsDiego Biurrun2009-01-25
| | | | Originally committed as revision 28351 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix #endif comments.Diego Biurrun2009-01-25
| | | | Originally committed as revision 28350 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add PIX_FMT_VDPAU_WMV3 and PIX_FMT_VDPAU_VC1.Carl Eugen Hoyos2009-01-20
| | | | Originally committed as revision 28344 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add VDPAU hardware accelerated decoding for MPEG1 and MPEG2 which willNVIDIA Corporation2009-01-16
| | | | | | | | be used by MPlayer. Original patch by NVIDIA corporation. Originally committed as revision 28322 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-14
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 28311 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add PIX_FMT_VDPAU_H264.Carl Eugen Hoyos2009-01-08
| | | | Originally committed as revision 28281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Avoid POSIX-reserved _t namespace.Diego Biurrun2008-12-27
| | | | Originally committed as revision 28195 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* consistency cosmetics: Rename POWERPC identifiers to PPC.Diego Biurrun2008-12-27
| | | | Originally committed as revision 28194 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove pointless malloc.h #include.Diego Biurrun2008-12-19
| | | | Originally committed as revision 28164 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Some forgotten eax -> REG_a changes.Reimar Döffinger2008-12-12
| | | | | | It seems that binutils >= 2.18 just treat eax as rax but older versions fail. Originally committed as revision 28136 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Delete unnecessary 'extern' keywords.Diego Biurrun2008-12-03
| | | | Originally committed as revision 28082 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove commented-out duplicate declarations.Diego Biurrun2008-12-02
| | | | Originally committed as revision 28058 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused declarations.Diego Biurrun2008-12-02
| | | | Originally committed as revision 28057 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: Consistently place HEADERS before OBJS in all Makefiles.Diego Biurrun2008-11-20
| | | | Originally committed as revision 27970 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Put variable declaration inside an #ifdef to avoid an unused variable warning.Diego Biurrun2008-11-17
| | | | Originally committed as revision 27945 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add some const specifiers to function name variables; fixes a bunch ofDiego Biurrun2008-11-04
| | | | | | "initialization discards qualifiers from pointer target type" warnings. Originally committed as revision 27894 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale