summaryrefslogtreecommitdiff
path: root/libswscale
Commit message (Collapse)AuthorAge
...
* Remove inline from initFilter()Måns Rullgård2010-01-17
| | | | | | It makes no sense having that function inlined. Originally committed as revision 30349 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a const qualifier in a cast, fix the gcc warning:Stefano Sabatini2010-01-17
| | | | | | | swscale.c: In function ‘sws_scale’: swscale.c:2968: warning: cast discards qualifiers from pointer target type Originally committed as revision 30341 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add a const qualifier in a cast, fix the gcc warning:Stefano Sabatini2010-01-17
| | | | | | | swscale.c: In function ‘planarCopy’: swscale.c:2256: warning: cast discards qualifiers from pointer target type Originally committed as revision 30340 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo, "get rid off" -> "get rid of".Stefano Sabatini2010-01-16
| | | | Originally committed as revision 30338 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Revert r30331, which broke compilation.Stefano Sabatini2010-01-16
| | | | | | | swScale_C is not templated if any optimization is to be used and !runtime_cpudetect. Originally committed as revision 30334 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer enum PixelFormat to int as the parameter type ofStefano Sabatini2010-01-16
| | | | | | fmt_depth(fmt). Originally committed as revision 30333 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Declare with av_unused the variable alpMmxFilter, fix the gcc warning:Stefano Sabatini2010-01-16
| | | | | | | | swscale_template.c: In function ‘swScale_C’: swscale_template.c:2580: warning: unused variable ‘alpMmxFilter’ swscale_template.c: In function ‘sws_init_swScale_C’: Originally committed as revision 30332 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize the code which calls the non optimized C functions inStefano Sabatini2010-01-16
| | | | | | getSwsFunc(). Originally committed as revision 30331 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer "to %s%s" over "to%s %s", slightly more readable.Stefano Sabatini2010-01-16
| | | | Originally committed as revision 30330 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify code in sws_getContext() which logs if the destination formatStefano Sabatini2010-01-16
| | | | | | | support dithering, remove the const char *dither variable and use a literal string instead. Originally committed as revision 30329 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document some of SwsContext.Ramiro Polla2010-01-16
| | | | Originally committed as revision 30328 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Reuse h{lum,chr}Filter{,Pos} variables for MMX2 fast_bilinear horizontal scaler.Ramiro Polla2010-01-16
| | | | Originally committed as revision 30327 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Factorize code which logs the source and destination formats inStefano Sabatini2010-01-16
| | | | | | sws_getContext(). Originally committed as revision 30326 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify reset_ptr(): employ usePal() macro rather than enumeratingStefano Sabatini2010-01-16
| | | | | | all the paletted formats. Originally committed as revision 30317 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add symbol versioning for shared librariesMåns Rullgård2010-01-16
| | | | | | Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 30315 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Don't initialize normal horizontal filter if MMX2 filter is used.Ramiro Polla2010-01-15
| | | | Originally committed as revision 30313 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Const correctness for src pointer. Remove all constness related warnings inZuxy Meng2010-01-15
| | | | | | libswscale. Originally committed as revision 30306 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix typo.Stefano Sabatini2010-01-15
| | | | Originally committed as revision 30304 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused clip_table code.Ramiro Polla2010-01-14
| | | | Originally committed as revision 30303 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add const qualifier to rgb48 to YV12 functions' src.Ramiro Polla2010-01-14
| | | | Originally committed as revision 30301 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add missing parameter to rgb48 to YV12 functions.Ramiro Polla2010-01-14
| | | | Originally committed as revision 30300 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* /nop is illegal with Apple's older version of gas, this was fixed elsewhereDavid Conrad2010-01-12
| | | | | | but not here since it was unused before now. Originally committed as revision 30289 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Make sure that sfence is used after any non temporal stores.Zuxy Meng2010-01-12
| | | | Originally committed as revision 30287 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Avoid redefinition of RGB_PLANAR2PACKED24 as the template is included forZuxy Meng2010-01-11
| | | | | | multiple times. Originally committed as revision 30273 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* cosmetics: {} placement.Ramiro Polla2010-01-11
| | | | Originally committed as revision 30272 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* MMX(2) accelerated yuv420->rgb24 routine, trivial as essentially as it justZuxy Meng2010-01-09
| | | | | | swaps R and B inputs for the existing yuv420->bgr24 routine. Originally committed as revision 30254 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused PREFETCHW macroZuxy Meng2010-01-09
| | | | Originally committed as revision 30253 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Ignore 0-height slice in sws_scale, otherwise a final 0-height slice willReimar Döffinger2010-01-08
| | | | | | | cause libswscale to assume the incorrect slice order and complain about slices starting in the middle. Originally committed as revision 30246 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Implement sws_isSupportedInput() and sws_isSupportedOutput().Stefano Sabatini2010-01-07
| | | | Originally committed as revision 30236 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove const to avoid a bunch of GCC warnings against discarded qualifiers andZuxy Meng2010-01-07
| | | | | | incompatible pointer type. Originally committed as revision 30234 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer enum PixelFormat over int for the type of the format parameterStefano Sabatini2010-01-03
| | | | | | of getSubSampleFactors(). Originally committed as revision 30184 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for theStefano Sabatini2010-01-03
| | | | | | | swscale_configuration() and swscale_license() functions, consistent with the rest of FFmpeg. Originally committed as revision 30180 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify usePal() macro, make it use av_pix_fmt_descriptors.Stefano Sabatini2010-01-03
| | | | Originally committed as revision 30172 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Simplify getSubSampleFactors(), make it use the values provided byStefano Sabatini2010-01-03
| | | | | | av_pix_fmt_descriptors(). Originally committed as revision 30171 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Do not needlessly use the BP register in x86_64-specific code, there areReimar Döffinger2010-01-01
| | | | | | enough other registers available that are less likely to cause issues. Originally committed as revision 30160 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused variable, fixes the warning:Diego Biurrun2009-12-28
| | | | | | libswscale/swscale_template.c:2575: warning: unused variable ‘srcFormat’ Originally committed as revision 30132 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove parameters no longer used in h[yc]scale().Ramiro Polla2009-12-21
| | | | Originally committed as revision 30099 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Move fast bilinear scaler code to the existing h[yc]scale_fast() functions.Ramiro Polla2009-12-21
| | | | Originally committed as revision 30098 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Rename function pointers used to convert from the input pixel format to theRamiro Polla2009-12-21
| | | | | | intermediate YV12 to a more descriptive name. Originally committed as revision 30097 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Check if chroma horizontal scaler is needed in sws_init_swScale().Ramiro Polla2009-12-21
| | | | Originally committed as revision 30096 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Remove unused fields from SwsContext.Ramiro Polla2009-12-21
| | | | Originally committed as revision 30095 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indentation.Ramiro Polla2009-12-20
| | | | Originally committed as revision 30087 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Indent.Ramiro Polla2009-12-20
| | | | Originally committed as revision 30086 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set fast_bilinear functions in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30085 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set horizontal scaler's range conversion in context in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30082 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Set horizontal scaler's src offsets in context in sws_init_swScale().Ramiro Polla2009-12-20
| | | | Originally committed as revision 30081 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Document the differences between the two asm fragments in initMMX2HScaler().Ramiro Polla2009-12-07
| | | | Originally committed as revision 29978 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Start using intermediate buffers at index 0.Ramiro Polla2009-12-06
| | | | | | | These index variables are incremented before each use, so they should be initialized to -1. Originally committed as revision 29977 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Fix compilation with runtime cpu detection.Ramiro Polla2009-12-05
| | | | | | All functions in swscale_template.c should be declared with the RENAME macro. Originally committed as revision 29976 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
* Add support for nv12/nv21 input.Ramiro Polla2009-12-03
| | | | Originally committed as revision 29974 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale