Changeset 5da255df6aa85568a0b8d736701472aeb0222057

Show
Ignore:
Timestamp:
06/14/08 10:09:06 (3 months ago)
Author:
Jean-Paul Saman <jpsaman@videolan.org>
git-committer:
Jean-Paul Saman <jpsaman@videolan.org> 1213430946 +0200
git-parent:

[21d5beede3b4df8a588b131a3ec598f2b84bc6de]

git-author:
Jean-Paul Saman <jpsaman@videolan.org> 1213366566 +0200
Message:

Fix indentation in some of the structs defintions.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/video_output/fb.c

    r3561b9b r5da255d  
    133133    /* System information */ 
    134134    int                 i_tty;                          /* tty device handle */ 
    135     bool          b_tty; 
     135    bool                b_tty; 
    136136    struct termios      old_termios; 
    137137 
     
    145145    struct fb_var_screeninfo    old_info;       /* original mode information */ 
    146146    struct fb_var_screeninfo    var_info;        /* current mode information */ 
    147     bool                  b_pan;     /* does device supports panning ? */ 
     147    bool                        b_pan;     /* does device supports panning ? */ 
    148148    struct fb_cmap              fb_cmap;                /* original colormap */ 
    149149    uint16_t                    *p_palette;              /* original palette */ 
    150     bool                  b_hw_accel;          /* has hardware support */ 
     150    bool                        b_hw_accel;          /* has hardware support */ 
    151151 
    152152    /* Video information */ 
    153153    uint32_t i_width; 
    154154    uint32_t i_height; 
    155     int i_aspect; 
    156     int i_bytes_per_pixel; 
    157     bool   b_auto;       /* Automatically adjust video size to fb size */ 
     155    int      i_aspect; 
     156    int      i_bytes_per_pixel; 
     157    bool     b_auto;       /* Automatically adjust video size to fb size */ 
    158158    vlc_fourcc_t i_chroma; 
    159159 
    160160    /* Video memory */ 
    161     uint8_t *    p_video;                                     /* base adress */ 
     161    uint8_t    *p_video;                                      /* base adress */ 
    162162    size_t      i_page_size;                                    /* page size */ 
    163163};