[vlc-devel] commit: Fix indentation in some of the structs defintions. ( Jean-Paul Saman )
git version control
git at videolan.org
Sat Jun 14 11:05:48 CEST 2008
vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Fri Jun 13 16:16:06 2008 +0200| [5da255df6aa85568a0b8d736701472aeb0222057]
Fix indentation in some of the structs defintions.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5da255df6aa85568a0b8d736701472aeb0222057
---
modules/video_output/fb.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/modules/video_output/fb.c b/modules/video_output/fb.c
index 9fba636..03d94b3 100644
--- a/modules/video_output/fb.c
+++ b/modules/video_output/fb.c
@@ -132,7 +132,7 @@ struct vout_sys_t
{
/* System information */
int i_tty; /* tty device handle */
- bool b_tty;
+ bool b_tty;
struct termios old_termios;
/* Original configuration information */
@@ -144,21 +144,21 @@ struct vout_sys_t
int i_fd; /* device handle */
struct fb_var_screeninfo old_info; /* original mode information */
struct fb_var_screeninfo var_info; /* current mode information */
- bool b_pan; /* does device supports panning ? */
+ bool b_pan; /* does device supports panning ? */
struct fb_cmap fb_cmap; /* original colormap */
uint16_t *p_palette; /* original palette */
- bool b_hw_accel; /* has hardware support */
+ bool b_hw_accel; /* has hardware support */
/* Video information */
uint32_t i_width;
uint32_t i_height;
- int i_aspect;
- int i_bytes_per_pixel;
- bool b_auto; /* Automatically adjust video size to fb size */
+ int i_aspect;
+ int i_bytes_per_pixel;
+ bool b_auto; /* Automatically adjust video size to fb size */
vlc_fourcc_t i_chroma;
/* Video memory */
- uint8_t * p_video; /* base adress */
+ uint8_t *p_video; /* base adress */
size_t i_page_size; /* page size */
};
More information about the vlc-devel
mailing list