]> git.sesse.net Git - vlc/blobdiff - plugins/sdl/vout_sdl.c
. just removed a forgotten debug message in the setpalette code
[vlc] / plugins / sdl / vout_sdl.c
index 33fb42d11f6c435047f7a3283d08983c0977e8c8..48ac936f968c4c1877eb59bceb1d89ee3e4779ca 100644 (file)
@@ -187,6 +187,35 @@ int vout_SDLManage( vout_thread_t *p_vout )
     return( 0 );
 }
 
+/*****************************************************************************
+ * vout_SDLSetPalette: sets an 8 bpp palette
+ *****************************************************************************
+ * This function sets the palette given as an argument. It does not return
+ * anything, but could later send information on which colors it was unable
+ * to set.
+ *****************************************************************************/
+void vout_SDLSetPalette( p_vout_thread_t p_vout, u16 *red, u16 *green, u16 *blue, u16 *transp)
+{
+     /* Create a display surface with a grayscale palette */
+    SDL_Color colors[256];
+    int i;
+  
+    /* Fill colors with color information */
+    for( i = 0; i < 256; i++ )
+    {
+        colors[ i ].r = red[ i ] >> 8;
+        colors[ i ].g = green[ i ] >> 8;
+        colors[ i ].b = blue[ i ] >> 8;
+    }
+    
+    /* Set palette */
+    if( SDL_SetColors(p_vout->p_sys->p_display, colors, 0, 256) == 0 )
+    {
+        intf_ErrMsg( "vout error: failed setting palette\n" );
+    }
+
+}
+
 /*****************************************************************************
  * vout_SDLDisplay: displays previously rendered output
  *****************************************************************************
@@ -271,7 +300,7 @@ static int SDLOpenDisplay( vout_thread_t *p_vout )
      */
 
     /* init flags and cursor */
-    flags = SDL_ANYFORMAT;
+    flags = SDL_ANYFORMAT | SDL_HWPALETTE;
 
     if( p_vout->p_sys->b_fullscreen )
         flags |= SDL_FULLSCREEN;