Changeset cd720479c5abc31f0f743c4c68263d2c35cd119c

Show
Ignore:
Timestamp:
02/19/07 17:50:32 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1171903832 +0000
git-parent:

[6ccd86f32b8ba1030e2d744c8b1c0b1c1caea3c6]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1171903832 +0000
Message:

- b_rtpts should really b a boolean (!)
- optimize ..._sys_t layout a little

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access_output/udp.c

    r6ccd86f rcd72047  
    174174struct sout_access_out_sys_t 
    175175{ 
    176     int                 b_rtpts;  // 1 if add rtp/ts header 
     176    int                 i_mtu; 
     177 
     178    vlc_bool_t          b_rtpts;  // 1 if add rtp/ts header 
     179    vlc_bool_t          b_mtu_warning; 
    177180    uint16_t            i_sequence_number; 
    178181    uint32_t            i_ssrc; 
    179182 
    180     int                 i_mtu; 
    181  
    182183    block_t             *p_buffer; 
    183184 
    184185    sout_access_thread_t *p_thread; 
    185186 
    186     vlc_bool_t          b_mtu_warning; 
    187187}; 
    188188