Cosmetics. Remove all trailing whitespaces

and convert the few tabs into spaces.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28681 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
iive 2009-02-21 00:30:53 +00:00
parent dbf0e084ab
commit 9ed1027a00
1 changed files with 61 additions and 61 deletions

View File

@ -579,12 +579,12 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
vidix_grkey_get(&gr_key);
gr_key.key_op = KEYS_PUT;
if (!(vo_colorkey & 0xFF000000)) {
gr_key.ckey.op = CKEY_TRUE;
gr_key.ckey.red = (vo_colorkey & 0x00FF0000) >> 16;
gr_key.ckey.green = (vo_colorkey & 0x0000FF00) >> 8;
gr_key.ckey.blue = vo_colorkey & 0x000000FF;
gr_key.ckey.op = CKEY_TRUE;
gr_key.ckey.red = (vo_colorkey & 0x00FF0000) >> 16;
gr_key.ckey.green = (vo_colorkey & 0x0000FF00) >> 8;
gr_key.ckey.blue = vo_colorkey & 0x000000FF;
} else
gr_key.ckey.op = CKEY_FALSE;
gr_key.ckey.op = CKEY_FALSE;
vidix_grkey_set(&gr_key);
}
}