summaryrefslogtreecommitdiff
path: root/libswscale
Commit message (Collapse)AuthorAge
* Document slice ordering assumption done by sws_scale().Stefano Sabatini2009-10-30
| | | | Originally committed as revision 29804 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
* Reset slice direction at end of each frame.Ramiro Polla2009-09-13
| | | | Originally committed as revision 29675 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove ; after while(0) in macros.Ramiro Polla2009-09-12
| | | | Originally committed as revision 29674 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document that slices can be bottom to top or top to bottom.Ramiro Polla2009-09-09
| | | | Originally committed as revision 29665 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-09-07
| | | | Originally committed as revision 29654 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename CHECKED_ALLOC(Z) to FF_ALLOC(Z)_OR_GOTO and add context and labelRamiro Polla2009-09-06
| | | | | | parameters. Originally committed as revision 29652 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-09-05
| | | | Originally committed as revision 29651 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
* Curly brackets cosmetics for previous commit.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29587 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check for return value of initFilter().Ramiro Polla2009-08-29
| | | | Originally committed as revision 29586 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert mistakenly commited hunk.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29585 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Check for return values of malloc.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29584 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Free memory used by input data.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29583 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Restore comment that was partially removed.Ramiro Polla2009-08-29
| | | | Originally committed as revision 29582 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Rename src->ref so as to not confuse with src being used in ↵Ramiro Polla2009-08-23
| | | | | | doTest(). Originally committed as revision 29548 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Use SWS_BILINEAR instead of hardcoded value.Ramiro Polla2009-08-23
| | | | Originally committed as revision 29547 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix inconsistent indentation.Ramiro Polla2009-08-22
| | | | Originally committed as revision 29545 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check return values of sws_allocVec() and sws_getConstVec().Ramiro Polla2009-08-20
| | | | Originally committed as revision 29543 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Free initial swscale context, too. Avoids a valgrind warning.Reimar Döffinger2009-08-19
| | | | Originally committed as revision 29538 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove useless casts of malloc return value.Reimar Döffinger2009-08-19
| | | | Originally committed as revision 29537 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Introduce and use sws_allocVec().Ramiro Polla2009-08-19
| | | | Originally committed as revision 29536 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reuse sws_getConstVec() where possible.Ramiro Polla2009-08-19
| | | | Originally committed as revision 29535 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Make selection of dstW, dstH, and flags more clear.Ramiro Polla2009-08-17
| | | | Originally committed as revision 29527 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
* BGR32 MMX special convertor.Peter Schlaile2009-08-14
| | | | | | Patch by Peter Schlaile < peter at schlaile dot de > Originally committed as revision 29515 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29512 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Don't check for chroma planes in mono formats.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29511 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
* Protect mmx2 filter code buffers so they are not executable and writeable atRamiro Polla2009-08-13
| | | | | | the same time (only mmap for now). Originally committed as revision 29509 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
* Indent.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29506 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Remove hack to end loop by setting variables to break.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29505 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Don't return random value from main().Ramiro Polla2009-08-13
| | | | Originally committed as revision 29504 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale-example: Check for Gray formats.Ramiro Polla2009-08-13
| | | | Originally committed as revision 29503 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove disabled debug code.Diego Biurrun2009-08-10
| | | | Originally committed as revision 29485 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Put some altivec code under COMPILE_ALTIVEC, and not HAVE_ALTIVEC.Ramiro Polla2009-08-09
| | | | Originally committed as revision 29484 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove 'offset' argument from PUTRGB* macros since it's unneeded and causedKostya Shishkov2009-08-09
| | | | | | pixel swapping during some YUV2RGB conversions. Originally committed as revision 29483 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
* Fix regression when converting to nv12/nv21.Guennadi Liakhovetski2009-08-01
| | | | | | Patch by Guennadi Liakhovetski, g D liakhovetski A gmx D de Originally committed as revision 29464 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 scaler: Remove {} block leftover from factorization in initMMX2Scaler().Ramiro Polla2009-07-28
| | | | | | Merge variable declarations to previous {} block and indent. Originally committed as revision 29454 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 scaler: factorize initMMX2Scaler().Ramiro Polla2009-07-28
| | | | Originally committed as revision 29453 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX2 scaler: add variable to ease factorization of initMMX2Scaler().Ramiro Polla2009-07-28
| | | | Originally committed as revision 29452 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale