Changeset cfb3d3432c431dee7f93d3139f9362c02addc4b4

Show
Ignore:
Timestamp:
10/02/07 20:58:29 (1 year ago)
Author:
Laurent Aimar <fenrir@videolan.org>
git-committer:
Laurent Aimar <fenrir@videolan.org> 1191351509 +0000
git-parent:

[0db7cd1cbba653c20cdde236d2bbc7a29df6fb18]

git-author:
Laurent Aimar <fenrir@videolan.org> 1191351509 +0000
Message:

Fixed const warnings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/mux/asf.c

    r7dd2f15 rcfb3d34  
    103103    uint16_t     i_tag;     /* for audio */ 
    104104    vlc_fourcc_t i_fourcc;  /* for video */ 
    105     char         *psz_name; /* codec name */ 
     105    const char         *psz_name; /* codec name */ 
    106106    int          i_blockalign; /* for audio only */ 
    107107    vlc_bool_t   b_audio_correction; 
     
    169169static void bo_add_mem  ( bo_t *, uint8_t *, int ); 
    170170 
    171 static void bo_addle_str16( bo_t *, char * ); 
     171static void bo_addle_str16( bo_t *, const char * ); 
    172172 
    173173/***************************************************************************** 
     
    722722} 
    723723 
    724 static void bo_addle_str16( bo_t *bo, char *str ) 
     724static void bo_addle_str16( bo_t *bo, const char *str ) 
    725725{ 
    726726    bo_addle_u16( bo, strlen( str ) + 1 ); 
     
    733733} 
    734734 
    735 static void bo_addle_str16_nosize( bo_t *bo, char *str ) 
     735static void bo_addle_str16_nosize( bo_t *bo, const char *str ) 
    736736{ 
    737737    for( ;; )