Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-12Some forgotten eax -> REG_a changes.Reimar Döffinger
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
2008-10-23cosmetics: typo fixDiego Biurrun
Originally committed as revision 27816 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-16Convert asm keyword into __asm__.Diego Pettenò
Neither the asm() nor the __asm__() keyword is not part of the C99 standard, but while GCC accepts the former in C89 syntax, it is not accepted in C99 unless GNU extensions are turned on (with -fasm). The latter form is accepted in any syntax as an extension (without requiring further command-line options). Sun Studio C99 compiler also does not accept asm() while accepting __asm__(), albeit reporting warnings that it's not valid C99 synta. Originally committed as revision 27778 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-09Mark variation-specific interleaveBytes static.Diego Pettenò
These functions are never called by themselves, the alias interleaveBytes is used instead. Originally committed as revision 27735 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-06gcc-apple specific fallback not necessary anymore (btw no apple hardware is ↵Luca Barbato
less than a Intel core, thus it won't come there w/out disabling all the optimizations) Originally committed as revision 27722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-05Use HAVE_FAST_64BIT instead of nonstandard __WORDSIZE macro.Diego Biurrun
Originally committed as revision 27720 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-10-04Remove MPlayer-specific MP_WORDSIZE hack.Diego Biurrun
Originally committed as revision 27698 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-09-05enable yuv422p to uyvy converterBaptiste Coudurier
Originally committed as revision 27527 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-09-04rgb vs bgr fix for the unscaled converters.Michael Niedermayer
Originally committed as revision 27518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-07-04spelling/grammar/wording overhaulDiego Biurrun
Originally committed as revision 27190 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-06-01restore needed cast to correct type with constBaptiste Coudurier
Originally committed as revision 26957 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-06-01add const, suppress warningsBaptiste Coudurier
Originally committed as revision 26942 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-06-01remove useless castsBaptiste Coudurier
Originally committed as revision 26941 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-02-24__asm __volatile -> asm volatile part 3Reimar Döffinger
Originally committed as revision 26091 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-01-29Make some assembler constants global instead of declaring them multiple times.Reimar Döffinger
Originally committed as revision 25910 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-01-17Remove some useless parentheses.Benoit Fouet
Originally committed as revision 25779 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-01-17Cosmetics: whitespacesBenoit Fouet
Originally committed as revision 25778 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2008-01-17Remove non cosmetic spaces inside parentheses.Benoit Fouet
Originally committed as revision 25777 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-11-22comment spelling/grammar fixesDiego Biurrun
Originally committed as revision 25137 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-07-05license header consistency cosmeticsDiego Biurrun
Originally committed as revision 23722 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-06-13misc spelling fixesDiego Biurrun
Originally committed as revision 23556 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-29cosmetics: Fix stray wrongly indented line.Diego Biurrun
Originally committed as revision 23174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-28cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.Diego Biurrun
Originally committed as revision 23158 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-28cosmetics: Replace manual tab indentation by \n\t as in the rest of the file.Diego Biurrun
Originally committed as revision 23157 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-27cosmetics: Remove trailing whitespace.Diego Biurrun
Originally committed as revision 23147 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-18preserve alpha channel when converting rgb32 to bgr32 in plain CIvo van Poorten
Originally committed as revision 23022 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-18skip MMX code in rgb24tobgr24 if the size of the input is smaller than theIvo van Poorten
size of the units the MMX code processes Originally committed as revision 23015 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-18skip MMX code in rgb32to16 if the size of the input is smaller than theIvo van Poorten
size of the units the MMX code processes Originally committed as revision 23014 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-18skip MMX code in rgb32to15 if the size of the input is smaller than theIvo van Poorten
size of the units the MMX code processes Originally committed as revision 23013 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-18slightly faster rgb32tobgr32; avoid one add and one cmpIvo van Poorten
Originally committed as revision 23012 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-17New implementation of rgb32tobgr32Ivo van Poorten
The previous implementation segfaulted with MMX enabled when fed an image smaller than the size of the units the MMX code processed. The new code: - is faster for MMX, MMX2 and plain C - processes small images correctly - is LGPL Originally committed as revision 23009 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2007-04-12Remove code duplication in sws_rgb2rgb_init.Ivo van Poorten
The lists of assignments of all rgbxtoy variants are removed from sws_rgb2rgb_init and replaced by a single list inside the template file. This way, multiple lists are generated by the preprocessor and each list gets its own initialization function. Those are called from the main sws_rgb2rgb_init function, if applicable. Originally committed as revision 22978 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-11-19Clarify that some of the non-SIMD code is now LGPLed.Luca Abeni
All the authours of such code agreed. Originally committed as revision 21045 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-11-07Fix MacIntel build: "/nop" is illegal on Apple's older version of GASNigel Pearson
Patch by Nigel Pearson % nigel A ind P tansu P com P au % Original thread: Date: Nov 6, 2006 10:43 PM Subject: [Ffmpeg-devel] [PATCH] swscale uses /nop, illegal for old versions of GAS Originally committed as revision 20740 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-10-07Change license headers to say 'FFmpeg' instead of 'this program'.Diego Biurrun
Originally committed as revision 20100 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-09-06Add official GPL header to make license explicit as discussed on ffmpeg-devel.Diego Biurrun
Originally committed as revision 19709 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-08-15-fPIC support for libswscaleJason Tackaberry
patch by Jason Tackaberry, tack /at/ urandom /dot/ ca Originally committed as revision 19402 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-08-13Replace asmalign.h hack by ASMALIGN cpp macros from config.h.Diego Biurrun
Originally committed as revision 19378 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2006-06-30Move postproc ---> libswscaleLuca Abeni
Originally committed as revision 18866 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale