summaryrefslogtreecommitdiffstats
path: root/libvo/sdl_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/sdl_common.c')
-rw-r--r--libvo/sdl_common.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/libvo/sdl_common.c b/libvo/sdl_common.c
index d45382698b..6d1944db8c 100644
--- a/libvo/sdl_common.c
+++ b/libvo/sdl_common.c
@@ -30,6 +30,30 @@ static int old_w;
static int old_h;
static int mode_flags;
+int vo_sdl_init(void)
+{
+ if (!SDL_WasInit(SDL_INIT_VIDEO) &&
+ SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE) < 0)
+ return 0;
+
+ // Setup Keyrepeats (500/30 are defaults)
+ SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, 100 /*SDL_DEFAULT_REPEAT_INTERVAL*/);
+
+ // We don't want those in our event queue.
+ SDL_EventState(SDL_ACTIVEEVENT, SDL_IGNORE);
+ SDL_EventState(SDL_MOUSEMOTION, SDL_IGNORE);
+ SDL_EventState(SDL_SYSWMEVENT, SDL_IGNORE);
+ SDL_EventState(SDL_USEREVENT, SDL_IGNORE);
+
+ return 1;
+}
+
+void vo_sdl_uninit(void)
+{
+ if (SDL_WasInit(SDL_INIT_VIDEO))
+ SDL_QuitSubSystem(SDL_INIT_VIDEO);
+}
+
void vo_sdl_fullscreen(void)
{
if (vo_fs) {