summaryrefslogtreecommitdiff
path: root/libswscale/swscale_template.c
Commit message (Collapse)AuthorAge
* Remove parameters no longer used in h[yc]scale().Ramiro Polla2009-12-21
| | | | Originally committed as revision 30099 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move fast bilinear scaler code to the existing h[yc]scale_fast() functions.Ramiro Polla2009-12-21
| | | | Originally committed as revision 30098 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename function pointers used to convert from the input pixel format to theRamiro Polla2009-12-21
| | | | | | intermediate YV12 to a more descriptive name. Originally committed as revision 30097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check if chroma horizontal scaler is needed in sws_init_swScale().Ramiro Polla2009-12-21
| | | | Originally committed as revision 30096 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-12-20
| | | | Originally committed as revision 30086 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set fast_bilinear functions in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30085 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
* Start using intermediate buffers at index 0.Ramiro Polla2009-12-06
| | | | | | | These index variables are incremented before each use, so they should be initialized to -1. Originally committed as revision 29977 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation with runtime cpu detection.Ramiro Polla2009-12-05
| | | | | | All functions in swscale_template.c should be declared with the RENAME macro. Originally committed as revision 29976 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for nv12/nv21 input.Ramiro Polla2009-12-03
| | | | Originally committed as revision 29974 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use enum PixelFormat instead of int for srcFormat and dstFormat.Carl Eugen Hoyos2009-11-08
| | | | Originally committed as revision 29857 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace manual gcc version check by AV_GCC_VERSION_AT_LEAST macro.Diego Biurrun2009-09-22
| | | | Originally committed as revision 29701 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Cleanup buffer debugs in swScale().Ramiro Polla2009-09-16
| | | | Originally committed as revision 29686 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use correct buffers in vertical scaler in unscaled YV12 case.Ramiro Polla2009-09-16
| | | | Originally committed as revision 29685 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
* Indent libswscale:Ramiro Polla2009-08-16
| | | | | | | | | | | - Use 4 spaces throughout for indentation; - Fix inconsistent indentation; - Indent function calls and declarations aligning arguments on multiple lines to the column after the opening parentheses; - 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 29522 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-08-15
| | | | Originally committed as revision 29518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Vertical yuv -> yuv16 scaler.Ramiro Polla2009-08-14
| | | | Originally committed as revision 29517 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove duplicate define (it is the same in the lum code).Ramiro Polla2009-08-13
| | | | Originally committed as revision 29508 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
* Remove disabled crufty code.Diego Biurrun2009-08-08
| | | | Originally committed as revision 29482 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-07-28
| | | | Originally committed as revision 29451 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove duplicate horizontal scaling when there aren't enough lines in a sliceRamiro Polla2009-07-28
| | | | | | to output the dstY line. Originally committed as revision 29450 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not misuse HAVE_ defines. Introduce COMPILE_TEMPLATE_ defines and use themRamiro Polla2009-07-27
| | | | | | instead. Originally committed as revision 29446 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize x86 fast_bilinear assembly.Ramiro Polla2009-07-27
| | | | Originally committed as revision 29445 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix assembly comments for x86 fast_bilinear so they match the C code.Ramiro Polla2009-07-27
| | | | Originally committed as revision 29444 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Kill warnings of possibly unused variables by using av_unused.Ramiro Polla2009-06-11
| | | | Originally committed as revision 29355 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.Ramiro Polla2009-06-04
| | | | Originally committed as revision 29349 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
* Move colorspace conversion functions implemented in pure C from templateKostya Shishkov2009-05-25
| | | | | | into swscale.c Originally committed as revision 29320 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix chroma shift when scaling from ARGB on LE and BGRA on BECédric Schieli2009-05-02
| | | | Originally committed as revision 29242 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
* 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
* swscale: Use function pointers for swScale functions.Ramiro Polla2009-04-04
| | | | Originally committed as revision 29145 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Add const to some swScale functions' parameters.Ramiro Polla2009-04-04
| | | | Originally committed as revision 29143 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Remove mmx2 params from h[yc]scale().Ramiro Polla2009-04-02
| | | | Originally committed as revision 29129 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Split h[yc]scale_fast() into their own functions.Ramiro Polla2009-04-02
| | | | Originally committed as revision 29128 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Execute sfence and emms depending on runtime flags.Ramiro Polla2009-04-02
| | | | Originally committed as revision 29127 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move swscale AltiVec template code to ppc subdirectory.Diego Biurrun2009-03-29
| | | | Originally committed as revision 29099 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do _not_ use rbx on x86_64, it will fail to compile with PIC, besides itReimar Döffinger2009-03-20
| | | | | | added completely pointless code. Originally committed as revision 29016 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix swscale compilation with Altivec enabled.Reimar Döffinger2009-03-20
| | | | Originally committed as revision 29015 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reindent after last commitCédric Schieli2009-03-20
| | | | Originally committed as revision 29014 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* YUVA420P is now supported as output formatCédric Schieli2009-03-20
| | | | Originally committed as revision 29012 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
* Remove useless casting in asm "m" operand.Matthieu Castet2009-03-19
| | | | | | Patch by Matthieu Castet, castet D matthieu A free D fr Originally committed as revision 29007 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not assume long is same width as x86 register.Ramiro Polla2009-03-18
| | | | Originally committed as revision 28992 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