Changeset bda958187b1b990d74660bcc2f821fb7fbe86684

Show
Ignore:
Timestamp:
06/18/08 12:13:37 (2 months ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1213784017 +0200
git-parent:

[662e93752f5b54859104f82e1eb7a6136621e591]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1212998122 +0200
Message:

Cosmetics.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/ps.c

    rdd8d083 rbda9581  
    389389                !ps_pkt_parse_pes( p_pkt, tk->i_skip ) ) ) 
    390390            { 
    391                 if( !b_new && !p_sys->b_have_pack &&  
     391                if( !b_new && !p_sys->b_have_pack && 
    392392                    (tk->fmt.i_cat == AUDIO_ES) && 
    393393                    (p_pkt->i_pts > 0) ) 
  • src/input/input_internal.h

    rc7cd0ac rbda9581  
    4848 
    4949    /* Title infos for that input */ 
    50     bool   b_title_demux; /* Titles/Seekpoints provided by demux */ 
     50    bool         b_title_demux; /* Titles/Seekpoints provided by demux */ 
    5151    int          i_title; 
    5252    input_title_t **title; 
     
    6666    bool b_rescale_ts; 
    6767 
    68     bool b_eof;   /* eof of demuxer */ 
     68    bool       b_eof;   /* eof of demuxer */ 
    6969    double     f_fps; 
    7070 
     
    8181 
    8282    /* Global properties */ 
    83     bool  b_can_pause; 
    84     bool  b_can_rate_control; 
     83    bool        b_can_pause; 
     84    bool        b_can_rate_control; 
    8585 
    8686    int         i_rate; 
     
    106106 
    107107    /* Output */ 
    108     es_out_t    *p_es_out; 
     108    es_out_t        *p_es_out; 
    109109    sout_instance_t *p_sout;            /* XXX Move it to es_out ? */ 
    110     bool      b_out_pace_control; /*     idem ? */ 
     110    bool            b_out_pace_control; /*     idem ? */ 
    111111 
    112112    /* Main input properties */ 
     
    364364    int                     i_synchro_state; 
    365365 
    366     bool              b_master; 
     366    bool                    b_master; 
    367367 
    368368    int                     i_rate; 
     
    467467    vlc_iconv_t     conv; 
    468468    int             i_char_width; 
    469     bool      b_little_endian; 
     469    bool            b_little_endian; 
    470470}; 
    471471