diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-03 10:17:14 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2009-02-03 10:17:14 +0000 |
commit | fbac650de32903d6abafbb4dbc0cff445c8478f1 (patch) | |
tree | 74d471952880841cb3c51012d5411e1124edcf8b /libvo | |
parent | af87ab3afdc2613ed6317f1eb534ff2cf878fce3 (diff) |
Whitespace/comment typo cosmetics.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28453 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_direct3d.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libvo/vo_direct3d.c b/libvo/vo_direct3d.c index ede069ee77..292aec76f0 100644 --- a/libvo/vo_direct3d.c +++ b/libvo/vo_direct3d.c @@ -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; |