[MPlayer-cvslog] r28734 - trunk/libvo/vo_vdpau.c

cehoyos subversion at mplayerhq.hu
Wed Feb 25 16:17:15 CET 2009


Author: cehoyos
Date: Wed Feb 25 16:17:14 2009
New Revision: 28734

Log:
10l: Add missing braces for VOCTRL_GET_EOSD_RES.

Modified:
   trunk/libvo/vo_vdpau.c

Modified: trunk/libvo/vo_vdpau.c
==============================================================================
--- trunk/libvo/vo_vdpau.c	Wed Feb 25 15:23:07 2009	(r28733)
+++ trunk/libvo/vo_vdpau.c	Wed Feb 25 16:17:14 2009	(r28734)
@@ -1076,8 +1076,10 @@ static int control(uint32_t request, voi
                 r->h = vo_screenheight;
                 r->ml = r->mr = border_x;
                 r->mt = r->mb = border_y;
-            } else
-                r->w = vo_dwidth; r->h = vo_dheight;
+            } else {
+                r->w = vo_dwidth;
+                r->h = vo_dheight;
+            }
             return VO_TRUE;
         }
     }



More information about the MPlayer-cvslog mailing list