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
2009-07-22Remove unused variables.Ramiro Polla
Originally committed as revision 29435 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-07-09Remove dependency from swscale_internal.h to lavu/internal.h, it is no longerRamiro Polla
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
2009-07-06The AltiVec code in libswscale no longer is under GPL.Diego Biurrun
Remove one erroneous preprocessor check for CONFIG_GPL in the AltiVec code. Originally committed as revision 29412 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-07-01Use enum PixelFormat in sws_format_name() prototypeMåns Rullgård
Originally committed as revision 29409 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-26AltiVec code and runtime cpudetect do not require CONFIG_GPL.Diego Biurrun
Make sure the latter is only checked for x86 optimizations, which are GPL. Originally committed as revision 29390 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-25The AltiVec optimizations of libswscale are no longer under GPL.Diego Biurrun
Originally committed as revision 29389 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-25PPC: Make sure that COMPILE_C is not deactivated if RUNTIME_CPUDETECT is set.Diego Biurrun
Originally committed as revision 29388 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-17Do not call rgb2rgbWrapper() for rgb48*, there is no special converterVitor Sessak
yet for those formats Originally committed as revision 29371 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-11Kill warnings of possibly unused variables by using av_unused.Ramiro Polla
Originally committed as revision 29355 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-11Fix compilation: #undef standard library functions that areDiego Biurrun
forbidden within FFmpeg, but allowed in example code. Originally committed as revision 29354 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-11Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.Diego Biurrun
This fixes swscale-example compilation. Originally committed as revision 29353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-06Remove '\p' doxygen markup, as it should improve plain text doxyStefano Sabatini
readability. Originally committed as revision 29351 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-05Use DECLARE_ALIGNED macro instead of __attribute__((aligned)) for ppc code.Ramiro Polla
Originally committed as revision 29350 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-05Replace more uses of __attribute__((aligned)) by DECLARE_ALIGNED.Ramiro Polla
Originally committed as revision 29349 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-05Use DECLARE_ALIGNED macro instead of gcc __attribute__.Pavel Pavlov
Patch by Pavel Pavlov <pavel at summit-tech dot ca> Originally committed as revision 29348 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-02Testing RGB48 variants requires bigger stride in swscale-example.cKostya Shishkov
Originally committed as revision 29343 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-02YUV into RGB48 BE/LE conversion supportKostya Shishkov
Originally committed as revision 29342 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-06-02Partial (low bits ignored, no direct transcoding into other RGB formats) supportKostya Shishkov
for inputting RGB48BE/LE. Originally committed as revision 29341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-25Move colorspace conversion functions implemented in pure C from templateKostya Shishkov
into swscale.c Originally committed as revision 29320 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-19Let SwScaler know that RGB48 BE/LE is 16-bits per component format.Kostya Shishkov
Originally committed as revision 29317 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-19Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).Kostya Shishkov
Originally committed as revision 29316 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-10Add const qualifier to param argument of sws_getContext() andDiego Biurrun
sws_getCachedContext(). Fixes the warning: swscale.c:3408: warning: assignment discards qualifiers from pointer target type Originally committed as revision 29288 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-10Move preprocessor condition before variable declaration, fixes the warning:Diego Biurrun
libswscale/swscale.c:1795: warning: unused variable 'flags' Originally committed as revision 29287 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-09Add missing const qualifiers to AltiVec function parameters where appropriate.Diego Biurrun
Fixes a couple of 'discards qualifiers from pointer target type' warnings. Originally committed as revision 29281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-08Fix sliced yuv410 -> yuv420 conversionVitor Sessak
Originally committed as revision 29272 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-05-05Change VOFW for x86 to 5120, it allows larger images to be scaled and wasMichael Niedermayer
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
2009-05-02Fix chroma shift when scaling from ARGB on LE and BGRA on BECédric Schieli
Originally committed as revision 29242 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-27Remove useless duplicated code in yuv2rgb_c_32, yuva2rgba_c and yuva2argb_cCédric Schieli
Originally committed as revision 29240 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-24Make reset_ptr() void.Carl Eugen Hoyos
Originally committed as revision 29229 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Planar 16bit 420 422 444 YUV support (output is only supported in someMichael Niedermayer
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
2009-04-21Merge gray->gray converters into planarCopy(), this should also make ↵Michael Niedermayer
planarCopy() useable for other 16bit formats once we support them. Originally committed as revision 29216 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Add macro to check for 16bit per sample.Michael Niedermayer
Originally committed as revision 29215 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Make sure src/dst are NULL when they arent used, some code uses this toMichael Niedermayer
simpify checks. Originally committed as revision 29214 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21Use generic BE check instead of checking for gray16LE.Michael Niedermayer
Originally committed as revision 29213 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-21add isBE()Michael Niedermayer
Originally committed as revision 29212 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-19Remove 2 useless += at the end of rgb16to15(), found by CSA.Michael Niedermayer
Originally committed as revision 29189 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-18Rename swscale_avoption.c to options.c.Stefano Sabatini
Consistent with lavc and lavf. Originally committed as revision 29188 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-18Make sws_setColorspaceDetails() return -1 if the destination format isStefano Sabatini
not supported. Originally committed as revision 29187 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-18Move sws_[gs]etColorspaceDetails() documentation from swscale.c toStefano Sabatini
swscale.h. Originally committed as revision 29186 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-14whitespace cosmetics: Break some overly long lines.Diego Biurrun
Originally committed as revision 29180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-14Do not use abgrToA for both luma and alpha channel in hyscale.Cédric Schieli
This fixes RGB32 (et al.) scaling. Originally committed as revision 29179 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-13Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.Diego Biurrun
Originally committed as revision 29175 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-13whitespace cosmetics: Reindent a few lines and break a few excessively long ↵Diego Biurrun
lines. Originally committed as revision 29174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-09Rename RUNTIME_CPUDETECT to CONFIG_RUNTIME_CPUDETECT and always define it.Ramiro Polla
Originally committed as revision 29154 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: Remove X86 commented out code.Ramiro Polla
Originally committed as revision 29149 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: Use function pointers for swScale functions.Ramiro Polla
Originally committed as revision 29145 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: {}-related cosmetics.Ramiro Polla
Originally committed as revision 29144 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-05swscale: Add const to some swScale functions' parameters.Ramiro Polla
Originally committed as revision 29143 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-02swscale: Remove mmx2 params from h[yc]scale().Ramiro Polla
Originally committed as revision 29129 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
2009-04-02swscale: Split h[yc]scale_fast() into their own functions.Ramiro Polla
Originally committed as revision 29128 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale