]> git.sesse.net Git - vlc/commitdiff
XCB: also set RGB masks in video_format_t
authorRémi Denis-Courmont <remi@remlab.net>
Sun, 26 Apr 2009 14:23:08 +0000 (17:23 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Sun, 26 Apr 2009 14:28:58 +0000 (17:28 +0300)
modules/video_output/xcb/x11.c

index d0e8af3b8365ea91ebfb45fe7b6ef23807117259..4dea7da3293c204d7fffea7b368d51f0027b668f 100644 (file)
@@ -211,9 +211,9 @@ static int Open (vlc_object_t *obj)
         vout->fmt_out.i_chroma = vout->output.i_chroma = chroma;
         if (!gray)
         {
-            vout->output.i_rmask = vt->red_mask;
-            vout->output.i_gmask = vt->green_mask;
-            vout->output.i_bmask = vt->blue_mask;
+            vout->fmt_out.i_rmask = vout->output.i_rmask = vt->red_mask;
+            vout->fmt_out.i_gmask = vout->output.i_gmask = vt->green_mask;
+            vout->fmt_out.i_bmask = vout->output.i_bmask = vt->blue_mask;
         }
         p_sys->bpp = fmt->bits_per_pixel;
         p_sys->pad = fmt->scanline_pad;