]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/sdl.c
Use var_InheritString for --decklink-video-connection.
[vlc] / modules / audio_output / sdl.c
index 070e2f6a27c3f2da37159ec10fa0574c462244c3..89bbfb1eb0d24dffa666f92b0849c89e5d75b464 100644 (file)
@@ -37,7 +37,7 @@
 #include <vlc_plugin.h>
 #include <vlc_aout.h>
 
-#include <SDL/SDL.h>
+#include <SDL.h>
 
 #define FRAME_SIZE 2048
 
@@ -91,10 +91,7 @@ static int Open ( vlc_object_t *p_this )
         return VLC_EGENERIC;
     }
 
-#ifndef WIN32
-    /* Win32 SDL implementation doesn't support SDL_INIT_EVENTTHREAD yet */
     i_flags |= SDL_INIT_EVENTTHREAD;
-#endif
 #ifndef NDEBUG
     /* In debug mode you may want vlc to dump a core instead of staying
      * stuck */