Changeset f7e4f2966af46e183f179121fe55bc77ac8f2b1c

Show
Ignore:
Timestamp:
20/07/07 19:19:17 (1 year ago)
Author:
Christophe Mutricy <xtophe@videolan.org>
git-committer:
Christophe Mutricy <xtophe@videolan.org> 1184951957 +0000
git-parent:

[2aaa1abe714a208f9a6c4721634e5ede312ef6d2]

git-author:
Christophe Mutricy <xtophe@videolan.org> 1184951957 +0000
Message:

Fix some const.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/mkv.cpp

    rc4ec3b9 rf7e4f29  
    14451445    matroska_stream_c  *p_stream; 
    14461446    matroska_segment_c *p_segment; 
    1447     uint8_t            *p_peek; 
    1448     std::string        s_path, s_filename; 
     1447    const uint8_t      *p_peek; 
     1448    std::string        s_path, s_filename; 
    14491449    vlc_stream_io_callback *p_io_callback; 
    14501450    EbmlStream         *p_io_stream; 
     
    15451545                        { 
    15461546                            // test wether this file belongs to our family 
    1547                             uint8_t *p_peek; 
    1548                             bool file_ok = false; 
    1549                             stream_t *p_file_stream = stream_UrlNew( p_demux, s_filename.c_str()); 
     1547                            const uint8_t *p_peek; 
     1548                            bool          file_ok = false; 
     1549                            stream_t      *p_file_stream = stream_UrlNew(  
     1550                                                            p_demux,  
     1551                                                            s_filename.c_str()); 
    15501552                            /* peek the begining */ 
    15511553                            if( p_file_stream && 
  • modules/demux/mp4/mp4.c

    rb48f3de rf7e4f29  
    269269    demux_sys_t     *p_sys; 
    270270 
    271     uint8_t         *p_peek; 
     271    const uint8_t   *p_peek; 
    272272 
    273273    MP4_Box_t       *p_ftyp;