From 21a6361d95a23d77fd32666ecf8c6842dda51174 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 23 Nov 2008 13:02:10 +0000 Subject: [PATCH] cosmetics: Lessen differences to vo_wii.c. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27989 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_fbdev.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libvo/vo_fbdev.c b/libvo/vo_fbdev.c index 822fb9cb68..431ce1257a 100644 --- a/libvo/vo_fbdev.c +++ b/libvo/vo_fbdev.c @@ -547,7 +547,7 @@ static int fb_dev_fd; static int fb_tty_fd = -1; static size_t fb_size; static uint8_t *frame_buffer; -static uint8_t *center; /* thx .so :) */ +static uint8_t *center; static struct fb_fix_screeninfo fb_finfo; static struct fb_var_screeninfo fb_orig_vinfo; static struct fb_var_screeninfo fb_vinfo; @@ -1074,8 +1074,7 @@ static int draw_frame(uint8_t *src[]) static int draw_slice(uint8_t *src[], int stride[], int w, int h, int x, int y) { - uint8_t *d; - uint8_t *s; + uint8_t *d, *s; d = center + fb_line_len * y + fb_pixel_size * x;