summaryrefslogtreecommitdiff
path: root/libswscale/swscale_internal.h
Commit message (Collapse)AuthorAge
...
* Indentation.Ramiro Polla2009-12-20
| | | | Originally committed as revision 30087 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set horizontal scaler's range conversion in context in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30082 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set horizontal scaler's src offsets in context in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30081 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make 16bit YUV formats compatible with NE avcodec_get_pix_fmt().Lars Täuber2009-09-05
| | | | | | Patch by Lars Täuber <lars <dot> taeuber <at> gmx <dot> net>. Originally committed as revision 29650 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* More indentation changes leftover from r29522:Ramiro Polla2009-08-16
| | | | | | | - Align asm code to the column 4 spaces after the call to __asm__(); - Align cases in switch statements to the same column as "switch". Originally committed as revision 29524 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cosmetics:Ramiro Polla2009-08-16
| | | | | | | - Place curly brackets in the same line as while/for/if/switch/else/do; - Place curly brackets at column 0 in the next line starting a function. Originally committed as revision 29523 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 horizontal scaler: Determine code size at runtime.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29510 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename "funny" code to "mmx2 filter" code.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29507 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 29439 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused variables.Ramiro Polla2009-07-21
| | | | Originally committed as revision 29435 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove dependency from swscale_internal.h to lavu/internal.h, it is no longerRamiro Polla2009-07-09
| | | | | | | | | | | needed for DECLARE_ALIGNED. Remove dependency from swscale-example.c to swscale_internal.h by duplicating the necessary code. The duplicated code is a hack and should be removed once a cleaner pixel format information system exists. swscale-example.c is example code on how to use the library and therefore shouldn't rely on internal headers. Originally committed as revision 29415 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use enum PixelFormat in sws_format_name() prototypeMåns Rullgård2009-07-01
| | | | Originally committed as revision 29409 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.Diego Biurrun2009-06-11
| | | | | | This fixes swscale-example compilation. Originally committed as revision 29353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use DECLARE_ALIGNED macro instead of gcc __attribute__.Pavel Pavlov2009-06-04
| | | | | | Patch by Pavel Pavlov <pavel at summit-tech dot ca> Originally committed as revision 29348 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Partial (low bits ignored, no direct transcoding into other RGB formats) supportKostya Shishkov2009-06-02
| | | | | | for inputting RGB48BE/LE. Originally committed as revision 29341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29317 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29316 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add missing const qualifiers to AltiVec function parameters where appropriate.Diego Biurrun2009-05-09
| | | | | | Fixes a couple of 'discards qualifiers from pointer target type' warnings. Originally committed as revision 29281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change VOFW for x86 to 5120, it allows larger images to be scaled and wasMichael Niedermayer2009-05-05
| | | | | | not slower. Other archs are not changed as the larger VOFW was slower on PPC. Originally committed as revision 29256 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Planar 16bit 420 422 444 YUV support (output is only supported in someMichael Niedermayer2009-04-21
| | | | | | | | unscaled convertions). This, like gray16 converts down to 8bit, which is a big FIXME & patch welcome, we should preserve more bits. Originally committed as revision 29217 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add macro to check for 16bit per sample.Michael Niedermayer2009-04-21
| | | | Originally committed as revision 29215 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* add isBE()Michael Niedermayer2009-04-20
| | | | Originally committed as revision 29212 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not use abgrToA for both luma and alpha channel in hyscale.Cédric Schieli2009-04-14
| | | | | | This fixes RGB32 (et al.) scaling. Originally committed as revision 29179 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* whitespace cosmetics: Reindent a few lines and break a few excessively long ↵Diego Biurrun2009-04-12
| | | | | | lines. Originally committed as revision 29174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Use function pointers for swScale functions.Ramiro Polla2009-04-04
| | | | Originally committed as revision 29145 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move bfin specific code to its subdir.Ramiro Polla2009-03-27
| | | | Originally committed as revision 29079 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move yuv2rgb code to subdirs.Ramiro Polla2009-03-26
| | | | Originally committed as revision 29063 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add alpha channel scalingCédric Schieli2009-03-20
| | | | Originally committed as revision 29011 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Consistently use ff_ prefixes for internal symbols.Diego Biurrun2009-03-18
| | | | Originally committed as revision 28988 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* YUVA420P is a planar YUV formatCédric Schieli2009-03-07
| | | | Originally committed as revision 28867 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add an isALPHA macro to check if pixel format has alpha channelCédric Schieli2009-02-27
| | | | Originally committed as revision 28747 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
* 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
* 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 a new unscaled PAL8 -> RGB converter.Vitor Sessak2008-10-08
| | | | Originally committed as revision 27730 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change variable types from int to enum PixelFormat.Carl Eugen Hoyos2008-10-07
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 27727 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename yuv2rgb variables to avoid name clashes with the ones used by bfin asm.Michael Niedermayer2008-09-13
| | | | Originally committed as revision 27599 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for PIX_FMT_MONOWHITE as output format.Michael Niedermayer2008-09-12
| | | | Originally committed as revision 27586 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* 100000000000000l, forgot to commit header change for r27580.Michael Niedermayer2008-09-11
| | | | Originally committed as revision 27583 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo in comment.Michael Niedermayer2008-09-08
| | | | Originally committed as revision 27546 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix accurate rounding mode on x86_64.Michael Niedermayer2008-09-07
| | | | | | Fixes issue222. Originally committed as revision 27545 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Support PIX_FMT_RGB32_1 and PIX_FMT_BGR32_1.Michael Niedermayer2008-09-04
| | | | | | Fixes issue248. Originally committed as revision 27522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove workaround for rgb/bgr mess.Michael Niedermayer2008-09-04
| | | | Originally committed as revision 27520 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change headers' guardnames consistently with r15120.Stefano Sabatini2008-08-31
| | | | Originally committed as revision 27499 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Split AVOption/AVClass in a separate file. SoC Patch from Keiji CostantiniLuca Barbato2008-07-09
| | | | Originally committed as revision 27244 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* spelling/grammar/wording overhaulDiego Biurrun2008-07-04
| | | | Originally committed as revision 27190 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 26702 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make av_class a pointer to const.Panagiotis Issaris2008-03-10
| | | | | | Patch by Takis. Originally committed as revision 26210 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* define VOF as double of VOFW.Benoit Fouet2008-03-10
| | | | Originally committed as revision 26209 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale