Changeset 344f75bc919e09535b43a117c20a40f2f4a7bf1d

Show
Ignore:
Timestamp:
29/01/08 14:19:29 (9 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1201612769 +0000
git-parent:

[04c8bb5da416fb26239f21c319966d9f03449dcc]

git-author:
Rafaël Carré <funman@videolan.org> 1201612769 +0000
Message:

MRLSplit(): removes unused parameter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/input/input.c

    r1b09c02 r344f75b  
    21822182    if( !p_input->b_preparsing ) 
    21832183    { 
    2184         MRLSplit( VLC_OBJECT(p_input), psz_dup, 
    2185                   &psz_access, &psz_demux, &psz_path ); 
     2184        MRLSplit( psz_dup, &psz_access, &psz_demux, &psz_path ); 
    21862185 
    21872186        msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'", 
     
    23992398                const char *psz_a, *psz_d; 
    24002399                psz_buf = strdup( in->p_access->psz_path ); 
    2401                 MRLSplit( VLC_OBJECT(p_input), psz_buf, 
    2402                           &psz_a, &psz_d, &psz_real_path ); 
     2400                MRLSplit( psz_buf, &psz_a, &psz_d, &psz_real_path ); 
    24032401            } 
    24042402            else 
     
    27912789 *           Media Resource Locator. 
    27922790 *****************************************************************************/ 
    2793 void MRLSplit( vlc_object_t *p_input, char *psz_dup, 
    2794                const char **ppsz_access, const char **ppsz_demux, 
     2791void MRLSplit( char *psz_dup, const char **ppsz_access, const char **ppsz_demux, 
    27952792               char **ppsz_path ) 
    27962793{ 
  • src/input/input_internal.h

    r22c96ab r344f75b  
    414414int subtitles_Filter( const char *); 
    415415 
    416 void MRLSplit( vlc_object_t *, char *, const char **, const char **, char ** ); 
     416void MRLSplit( char *, const char **, const char **, char ** ); 
    417417 
    418418static inline void input_ChangeState( input_thread_t *p_input, int state ) 
  • src/input/stream.c

    r3464c8d r344f75b  
    204204    char psz_dup[strlen (psz_url) + 1]; 
    205205    strcpy (psz_dup, psz_url);; 
    206     MRLSplit( p_parent, psz_dup, &psz_access, &psz_demux, &psz_path ); 
     206    MRLSplit( psz_dup, &psz_access, &psz_demux, &psz_path ); 
    207207 
    208208    /* Now try a real access */