summaryrefslogtreecommitdiff
path: root/libswscale
Commit message (Collapse)AuthorAge
* Do not call rgb2rgbWrapper() for rgb48*, there is no special converterVitor Sessak2009-06-17
| | | | | | yet for those formats Originally committed as revision 29371 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
* Fix compilation: #undef standard library functions that areDiego Biurrun2009-06-11
| | | | | | forbidden within FFmpeg, but allowed in example code. Originally committed as revision 29354 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add libavutil/internal.h #include, required for the DECLARE_ALIGNED macro.Diego Biurrun2009-06-11
| | | | | | This fixes swscale-example compilation. Originally committed as revision 29353 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove '\p' doxygen markup, as it should improve plain text doxyStefano Sabatini2009-06-06
| | | | | | readability. Originally committed as revision 29351 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use DECLARE_ALIGNED macro instead of __attribute__((aligned)) for ppc code.Ramiro Polla2009-06-04
| | | | Originally committed as revision 29350 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
* Use DECLARE_ALIGNED macro instead of gcc __attribute__.Pavel Pavlov2009-06-04
| | | | | | Patch by Pavel Pavlov <pavel at summit-tech dot ca> Originally committed as revision 29348 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Testing RGB48 variants requires bigger stride in swscale-example.cKostya Shishkov2009-06-02
| | | | Originally committed as revision 29343 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* YUV into RGB48 BE/LE conversion supportKostya Shishkov2009-06-02
| | | | Originally committed as revision 29342 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
* Let SwScaler know that RGB48 BE/LE is 16-bits per component format.Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29317 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make SwScaler recognize RGB48 BE/LE colourspaces (not support though).Kostya Shishkov2009-05-19
| | | | Originally committed as revision 29316 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add const qualifier to param argument of sws_getContext() andDiego Biurrun2009-05-10
| | | | | | | 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
* Move preprocessor condition before variable declaration, fixes the warning:Diego Biurrun2009-05-10
| | | | | | libswscale/swscale.c:1795: warning: unused variable 'flags' Originally committed as revision 29287 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add missing const qualifiers to AltiVec function parameters where appropriate.Diego Biurrun2009-05-09
| | | | | | Fixes a couple of 'discards qualifiers from pointer target type' warnings. Originally committed as revision 29281 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix sliced yuv410 -> yuv420 conversionVitor Sessak2009-05-07
| | | | Originally committed as revision 29272 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Change VOFW for x86 to 5120, it allows larger images to be scaled and wasMichael Niedermayer2009-05-05
| | | | | | 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
* 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
* Remove useless duplicated code in yuv2rgb_c_32, yuva2rgba_c and yuva2argb_cCédric Schieli2009-04-27
| | | | Originally committed as revision 29240 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make reset_ptr() void.Carl Eugen Hoyos2009-04-23
| | | | Originally committed as revision 29229 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
* Merge gray->gray converters into planarCopy(), this should also make ↵Michael Niedermayer2009-04-21
| | | | | | | | planarCopy() useable for other 16bit formats once we support them. Originally committed as revision 29216 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add macro to check for 16bit per sample.Michael Niedermayer2009-04-21
| | | | Originally committed as revision 29215 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make sure src/dst are NULL when they arent used, some code uses this toMichael Niedermayer2009-04-21
| | | | | | simpify checks. Originally committed as revision 29214 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use generic BE check instead of checking for gray16LE.Michael Niedermayer2009-04-20
| | | | Originally committed as revision 29213 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* add isBE()Michael Niedermayer2009-04-20
| | | | Originally committed as revision 29212 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove 2 useless += at the end of rgb16to15(), found by CSA.Michael Niedermayer2009-04-18
| | | | Originally committed as revision 29189 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename swscale_avoption.c to options.c.Stefano Sabatini2009-04-18
| | | | | | Consistent with lavc and lavf. Originally committed as revision 29188 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make sws_setColorspaceDetails() return -1 if the destination format isStefano Sabatini2009-04-18
| | | | | | not supported. Originally committed as revision 29187 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move sws_[gs]etColorspaceDetails() documentation from swscale.c toStefano Sabatini2009-04-18
| | | | | | swscale.h. Originally committed as revision 29186 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* whitespace cosmetics: Break some overly long lines.Diego Biurrun2009-04-14
| | | | Originally committed as revision 29180 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
* Move addition of MMX-OBJS to OBJS into common.mak instead of duplicating it.Diego Biurrun2009-04-12
| | | | Originally committed as revision 29175 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* whitespace cosmetics: Reindent a few lines and break a few excessively long ↵Diego Biurrun2009-04-12
| | | | | | lines. Originally committed as revision 29174 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename RUNTIME_CPUDETECT to CONFIG_RUNTIME_CPUDETECT and always define it.Ramiro Polla2009-04-08
| | | | Originally committed as revision 29154 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* swscale: Remove X86 commented out code.Ramiro Polla2009-04-05
| | | | Originally committed as revision 29149 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: {}-related cosmetics.Ramiro Polla2009-04-04
| | | | Originally committed as revision 29144 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
* Make examples and test progs depend on librariesMåns Rullgård2009-04-01
| | | | Originally committed as revision 29119 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add missing $(EXESUF) to example/test program dependency declaration.Diego Biurrun2009-03-31
| | | | Originally committed as revision 29114 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Use correct PRId64 instead of "lld" in printf string, fixes compiler warnings.Reimar Döffinger2009-03-30
| | | | Originally committed as revision 29107 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Generalize example target rule in common.mak so that it sets a -example$(EXESUF)Diego Biurrun2009-03-29
| | | | | | suffix for all example files instead of doing this in individual Makefiles. Originally committed as revision 29100 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
* Relicense file to LGPL with the permission of Romain Dolbeau, the author.Diego Biurrun2009-03-29
| | | | Originally committed as revision 29097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale