comparison src/video/SDL_video.c @ 4165:3b8ac3d311a2 SDL-1.2

Hello. This patch provides basic support for video on the Sony PS3 Linux framebuffer. Scaling, format-conversion, and drawing is done from the SPEs, so there is little performance impact to PPE applications. This is by no means production quality code, but it is a very good start and a good example of how to use the PS3's hardware capabilities to accelerate video playback on the box. The driver has been verified to work with ffplay, mplayer and xine. This piece of software has been developed at the IBM R&D Lab in Boeblingen, Germany and is now returned to the community. Enjoy ! Signed-off-by: D.Herrendoerfer < d.herrendoerfer [at] de [dot] ibm [dot] com >
author Sam Lantinga <slouken@libsdl.org>
date Thu, 02 Apr 2009 04:06:55 +0000
parents a1b03ba2fcd0
children 429c8dd3175d
comparison
equal deleted inserted replaced
4164:7a4c511c980a 4165:3b8ac3d311a2
60 #if SDL_VIDEO_DRIVER_DIRECTFB 60 #if SDL_VIDEO_DRIVER_DIRECTFB
61 &DirectFB_bootstrap, 61 &DirectFB_bootstrap,
62 #endif 62 #endif
63 #if SDL_VIDEO_DRIVER_PS2GS 63 #if SDL_VIDEO_DRIVER_PS2GS
64 &PS2GS_bootstrap, 64 &PS2GS_bootstrap,
65 #endif
66 #if SDL_VIDEO_DRIVER_PS3
67 &PS3_bootstrap,
65 #endif 68 #endif
66 #if SDL_VIDEO_DRIVER_GGI 69 #if SDL_VIDEO_DRIVER_GGI
67 &GGI_bootstrap, 70 &GGI_bootstrap,
68 #endif 71 #endif
69 #if SDL_VIDEO_DRIVER_VGL 72 #if SDL_VIDEO_DRIVER_VGL