[MPlayer-cvslog] r28453 - trunk/libvo/vo_direct3d.c
reimar
subversion at mplayerhq.hu
Tue Feb 3 11:17:14 CET 2009
Author: reimar
Date: Tue Feb 3 11:17:14 2009
New Revision: 28453
Log:
Whitespace/comment typo cosmetics.
Modified:
trunk/libvo/vo_direct3d.c
Modified: trunk/libvo/vo_direct3d.c
==============================================================================
--- trunk/libvo/vo_direct3d.c Tue Feb 3 11:16:03 2009 (r28452)
+++ trunk/libvo/vo_direct3d.c Tue Feb 3 11:17:14 2009 (r28453)
@@ -56,7 +56,7 @@ static struct global_priv {
0 = Movie is not paused */
int is_clear_needed; /**< 1 = Clear the backbuffer before StretchRect
0 = (default) Don't clear it */
- D3DLOCKED_RECT locked_rect; /**< The locked Offscreen surface */
+ D3DLOCKED_RECT locked_rect; /**< The locked offscreen surface */
RECT fs_movie_rect; /**< Rect (upscaled) of the movie when displayed
in fullscreen */
RECT fs_panscan_rect; /**< PanScan source surface cropping in
@@ -273,10 +273,10 @@ static int create_d3d_surfaces(void)
// make sure we respect the size limits without breaking aspect or pow2-requirements
while (tex_width > priv->max_texture_width || tex_height > priv->max_texture_height) {
- osd_width >>= 1;
- osd_height >>= 1;
- tex_width >>= 1;
- tex_height >>= 1;
+ osd_width >>= 1;
+ osd_height >>= 1;
+ tex_width >>= 1;
+ tex_height >>= 1;
}
priv->osd_width = osd_width;
More information about the MPlayer-cvslog
mailing list