Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 8589134f | 2021-11-30 10:23:21 | Fixed potential buffer overflow in YUV conversion Fixes https://github.com/libsdl-org/SDL/issues/5043 | ||
| b5e3d264 | 2020-01-23 01:00:52 | Added a single SDL_LEAN_AND_MEAN define to turn on minimal SDL builds Protected more code with #ifdefs to reduce the size of minimal shared library builds | ||
| 2ea4419a | 2018-02-17 20:18:48 | yuv: patched to compile. | ||
| 7c0c2c22 | 2018-02-17 20:10:13 | yuv: fixed variable declaration shadowing warnings. Fixes Bugzilla #4062. | ||
| a6a4e27a | 2017-11-12 22:51:12 | Updated SDL's YUV support, many thanks to Adrien Descamps New functions get and set the YUV colorspace conversion mode: SDL_SetYUVConversionMode() SDL_GetYUVConversionMode() SDL_GetYUVConversionModeForResolution() SDL_ConvertPixels() converts between all supported RGB and YUV formats, with SSE acceleration for converting from planar YUV formats (YV12, NV12, etc) to common RGB/RGBA formats. Added a new test program, testyuv, to verify correctness and speed of YUV conversion functionality. |