summaryrefslogtreecommitdiffstats
path: root/libswscale
Commit message (Collapse)AuthorAgeFilesLines
* Discard two symbols from libswscale.cehoyos2008-02-225-23/+18
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26060 b3059339-0415-0410-9bf9-f77b7e298cf2
* Clean up lib* version definitionsmru2008-02-191-2/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26034 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove duplicate AV_STRINGIFY() definitionmru2008-02-171-3/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26013 b3059339-0415-0410-9bf9-f77b7e298cf2
* FLAT objects cannot have multiple sections, so using the L1 attributes breaksdiego2008-02-163-4/+16
| | | | | | | | | linking. The FDPIC relocs also break for any other format. Thus check the compiler environment and select the appropriate sections/relocs. patch by Mike Frysinger, vapier.adi a gmail d com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26010 b3059339-0415-0410-9bf9-f77b7e298cf2
* More explicit unsupported pixel format error messages.benoit2008-02-151-2/+2
| | | | | | | Patch by Stefano Sabatini: stefano sabatini (minus) lala % poste it git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25999 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2008-02-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25991 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make dither4 & dither8 const.cehoyos2008-02-092-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25967 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make some assembler constants global instead of declaring them multiple times.reimar2008-01-296-60/+43
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25910 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use DECLARE_ASM_CONST where possible in libswscale codereimar2008-01-283-73/+73
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25903 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix typo in commentreimar2008-01-211-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25829 b3059339-0415-0410-9bf9-f77b7e298cf2
* Change (a == NULL) condition to (!a) and (a != NULL) condition to (a).benoit2008-01-173-19/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25780 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove some useless parentheses.benoit2008-01-173-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25779 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cosmetics: whitespacesbenoit2008-01-176-69/+69
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25778 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove non cosmetic spaces inside parentheses.benoit2008-01-176-31/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25777 b3059339-0415-0410-9bf9-f77b7e298cf2
* Description: remove superfluous parentheses.benoit2008-01-171-5/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25776 b3059339-0415-0410-9bf9-f77b7e298cf2
* Check param in sws_getCachedContext().benoit2008-01-171-1/+6
| | | | | | | | | Patch by KO Myung-Hun komh chollian net Original thread: [FFmpeg-devel] [PATCH] param check in sws_getCachedContext() Date: Wed Jan 9 11:15:19 CET 2008 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25775 b3059339-0415-0410-9bf9-f77b7e298cf2
* comment typo fixesdiego2007-12-212-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25485 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make sure strides have positive values before converting.benoit2007-12-201-1/+1
| | | | | | | Patch by Peter Schlaile: peter schlaile de git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25467 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing declarations for AltiVec functions, fixes the warnings:diego2007-12-081-0/+7
| | | | | | | | | swscale_template.c:1171: warning: implicit declaration of function ‘altivec_yuv2packedX’ swscale.c:1982: warning: implicit declaration of function ‘yuv2rgb_altivec_init_tables’ yuv2rgb.c:652: warning: implicit declaration of function ‘yuv2rgb_init_altivec’ git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25319 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix 'make checkheaders' on AltiVec-enabled systems.diego2007-12-071-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25316 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix some spelling typosdiego2007-12-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25245 b3059339-0415-0410-9bf9-f77b7e298cf2
* Comment some #endif directives.diego2007-11-301-14/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25211 b3059339-0415-0410-9bf9-f77b7e298cf2
* comment spelling/grammar fixesdiego2007-11-221-36/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25137 b3059339-0415-0410-9bf9-f77b7e298cf2
* The function names of [rgb|bgr]1[56]to[UV|Y] had rgb<->bgr flipped.diego2007-11-041-8/+8
| | | | | | | Rename them to match the actual implementation. Fixes issue 162. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24965 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rename LIB to LIBNAME for consistency.diego2007-10-181-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24802 b3059339-0415-0410-9bf9-f77b7e298cf2
* 1l: Update wrong #endif comment.diego2007-10-181-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24801 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add FFMPEG_ prefix to all multiple inclusion guards.diego2007-10-183-9/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24800 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Fix AltiVec spelling.diego2007-10-021-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24685 b3059339-0415-0410-9bf9-f77b7e298cf2
* Revert wrong ARCH_BFIN --> HAVE_BFIN change.diego2007-09-273-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24627 b3059339-0415-0410-9bf9-f77b7e298cf2
* add support for yuva420p colorspace (yuv420p + alpha)aurel2007-09-241-0/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24601 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetic (get rid of _ at the start of local variable names)michael2007-09-241-24/+24
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24597 b3059339-0415-0410-9bf9-f77b7e298cf2
* renaming ARCH_BFIN to HAVE_BFINmhoffman2007-08-313-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24309 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Sort some lines, whitespace changes.diego2007-08-301-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24305 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move Apple gcc AltiVec vector declaration syntax to libavutil.diego2007-08-242-12/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24143 b3059339-0415-0410-9bf9-f77b7e298cf2
* Rename CONFIG_DARWIN to SYS_DARWIN, it is not configurable (in FFmpeg).diego2007-08-222-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24121 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-07-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23889 b3059339-0415-0410-9bf9-f77b7e298cf2
* integrating blackfin optimized yuyvtoyv12 convertermhoffman2007-07-201-0/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23833 b3059339-0415-0410-9bf9-f77b7e298cf2
* removing reference to bfin_sram.h its not used anylongermhoffman2007-07-201-1/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23832 b3059339-0415-0410-9bf9-f77b7e298cf2
* adding blackfin optimized yuyvtoyv12 convertermhoffman2007-07-201-0/+70
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23831 b3059339-0415-0410-9bf9-f77b7e298cf2
* UltraSPARC VIS yuv2rgbbenoit2007-07-193-0/+219
| | | | | | | | | patch by Denes Balatoni: [dbalatoni interware hu] original thread: [FFmpeg-devel] [PATCH] UltraSPARC VIS yuv2rgb third try date: 07/17/2007 08:35 PM git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23825 b3059339-0415-0410-9bf9-f77b7e298cf2
* use YUV440P in swscalebenoit2007-07-182-0/+11
| | | | | | | | | patch by Andreas Öman: \andreas olebyn nu/ original thread: [FFmpeg-devel] half vertical chroma resolution from JPEGs.. date: 07/03/2007 01:29 PM git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23811 b3059339-0415-0410-9bf9-f77b7e298cf2
* This was rewritten by Michael, switch copyrights to him and license to LGPL.diego2007-07-171-15/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23796 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant "all rights reserved" statement, OKed by Walken.diego2007-07-162-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23791 b3059339-0415-0410-9bf9-f77b7e298cf2
* typodiego2007-07-143-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23780 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused file (this time for real)lucabe2007-07-111-449/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23767 b3059339-0415-0410-9bf9-f77b7e298cf2
* Resurrect yuv2rgb_init.c, to add a proper license (and some comments aboutlucabe2007-07-101-0/+449
| | | | | | | its origin) in it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23759 b3059339-0415-0410-9bf9-f77b7e298cf2
* ISO8859-1 --> UTF-8diego2007-07-092-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23752 b3059339-0415-0410-9bf9-f77b7e298cf2
* license header consistency cosmeticsdiego2007-07-0511-11/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23722 b3059339-0415-0410-9bf9-f77b7e298cf2
* Group all copyright and author notices together.diego2007-07-052-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23721 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove unused filelucabe2007-07-031-412/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23715 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix 'make checkheaders'.diego2007-07-021-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23701 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove obsolete and misleading comment.diego2007-07-021-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23700 b3059339-0415-0410-9bf9-f77b7e298cf2
* comment grammar fixesdiego2007-06-281-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23685 b3059339-0415-0410-9bf9-f77b7e298cf2
* integrating ff_bfin_get_unscaled_swscale into the systemmhoffman2007-06-222-1/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23605 b3059339-0415-0410-9bf9-f77b7e298cf2
* adding Blackfin swscale_bfin infrastructure, and the first swscale routine ↵mhoffman2007-06-221-0/+66
| | | | | | uyvy to yv12 video resampler git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23604 b3059339-0415-0410-9bf9-f77b7e298cf2
* document pointer offset by -8mhoffman2007-06-221-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23603 b3059339-0415-0410-9bf9-f77b7e298cf2
* re pipeline loop, to eliminate extra chroma readsmhoffman2007-06-221-17/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23602 b3059339-0415-0410-9bf9-f77b7e298cf2
* correct chroma skewing bug, caused by incorrect stride adjustmentsmhoffman2007-06-221-5/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23601 b3059339-0415-0410-9bf9-f77b7e298cf2
* Missing libswscale part of TARGET_ -> HAVE_ changereimar2007-06-161-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23564 b3059339-0415-0410-9bf9-f77b7e298cf2
* Copile fix: missing libswscale part of ffmpeg r9322 TARGET_ARCH -> ARCH change.reimar2007-06-161-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23562 b3059339-0415-0410-9bf9-f77b7e298cf2
* misc spelling fixesdiego2007-06-135-12/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23556 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix yuv2rgb C functions to work for widths divisible by 4 but not by 8reimar2007-06-081-4/+38
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23508 b3059339-0415-0410-9bf9-f77b7e298cf2
* correcting spelling error, yuv2rgb888_line was renamed to yuv2rgb24_linemhoffman2007-06-051-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23472 b3059339-0415-0410-9bf9-f77b7e298cf2
* rename attribute_unused to av_unused as it is declared in common.hbenoit2007-05-302-3/+3
| | | | | | | | | | patch by Carl Eugen Hoyos cehoyos chez ag or at original thread: [FFmpeg-devel] [PATCH] attribute_unused -> av_unused date: 05/29/2007 01:23 PM git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23418 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove redundant fastmemcpy.h #include, it is indirectly #included by avutil.h.diego2007-05-282-6/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23400 b3059339-0415-0410-9bf9-f77b7e298cf2
* ffmpeg -sws_flags command line option to set swscaler flagsivo2007-05-231-1/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23379 b3059339-0415-0410-9bf9-f77b7e298cf2
* Blackfin optimized uyvytoyv12 routine. the implementation includes chroma ↵mhoffman2007-05-191-0/+79
| | | | | | | | | | averaging. This is 10x faster than the cooresponding C function. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23345 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove extern C declarations for C++.diego2007-05-161-8/+0
| | | | | | | FFmpeg is pure C and not all public headers have the declarations. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23322 b3059339-0415-0410-9bf9-f77b7e298cf2
* Blackfin optimized YUV420 to RGB CSC Color Space Converters.gpoirier2007-05-137-1/+690
| | | | | | | | | | | | YUV2 -> RGB BGR for 565, 555 and 888 a.k.a. 24bit color. Speed-up compared to C version compiled with -O3 187.28% Patch by Marc Hoffman %mmh A pleasantst P com% Original thread: Date: May 9, 2007 2:46 AM Subject: [FFmpeg-devel] PATCH BlackFin yuv2rgb color space conversion git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23307 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics; one test per line for all isXXX(x) macrosivo2007-05-112-31/+91
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23296 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove the need of one extra shift in rgb16ToUVivo2007-05-091-6/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23281 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix rgb15ToUV. Correct order of components and use one shift less.ivo2007-05-091-7/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23279 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: indentation after previous patchbenoit2007-05-021-13/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23207 b3059339-0415-0410-9bf9-f77b7e298cf2
* test if color conv fonction exists prior to using itbenoit2007-05-021-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23206 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics attack, part IV: Remove all tabs and prettyprint/reindent the code.diego2007-04-301-2682/+2681
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23179 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics attack, part III: Remove all tabs and prettyprint/reindent the code.diego2007-04-294-1445/+1449
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23175 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Fix stray wrongly indented line.diego2007-04-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23174 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics attack, part II: Remove all tabs and prettyprint/reindent the code.diego2007-04-294-2498/+2497
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23173 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.diego2007-04-285-3081/+3074
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23158 b3059339-0415-0410-9bf9-f77b7e298cf2
* cosmetics: Replace manual tab indentation by \n\t as in the rest of the file.diego2007-04-281-43/+43
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23157 b3059339-0415-0410-9bf9-f77b7e298cf2
*