Changeset 344f75bc919e09535b43a117c20a40f2f4a7bf1d
- 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
| r1b09c02 |
r344f75b |
|
| 2182 | 2182 | if( !p_input->b_preparsing ) |
|---|
| 2183 | 2183 | { |
|---|
| 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 ); |
|---|
| 2186 | 2185 | |
|---|
| 2187 | 2186 | msg_Dbg( p_input, "`%s' gives access `%s' demux `%s' path `%s'", |
|---|
| … | … | |
| 2399 | 2398 | const char *psz_a, *psz_d; |
|---|
| 2400 | 2399 | 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 ); |
|---|
| 2403 | 2401 | } |
|---|
| 2404 | 2402 | else |
|---|
| … | … | |
| 2791 | 2789 | * Media Resource Locator. |
|---|
| 2792 | 2790 | *****************************************************************************/ |
|---|
| 2793 | | void MRLSplit( vlc_object_t *p_input, char *psz_dup, |
|---|
| 2794 | | const char **ppsz_access, const char **ppsz_demux, |
|---|
| | 2791 | void MRLSplit( char *psz_dup, const char **ppsz_access, const char **ppsz_demux, |
|---|
| 2795 | 2792 | char **ppsz_path ) |
|---|
| 2796 | 2793 | { |
|---|
| r22c96ab |
r344f75b |
|
| 414 | 414 | int subtitles_Filter( const char *); |
|---|
| 415 | 415 | |
|---|
| 416 | | void MRLSplit( vlc_object_t *, char *, const char **, const char **, char ** ); |
|---|
| | 416 | void MRLSplit( char *, const char **, const char **, char ** ); |
|---|
| 417 | 417 | |
|---|
| 418 | 418 | static inline void input_ChangeState( input_thread_t *p_input, int state ) |
|---|
| r3464c8d |
r344f75b |
|
| 204 | 204 | char psz_dup[strlen (psz_url) + 1]; |
|---|
| 205 | 205 | 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 ); |
|---|
| 207 | 207 | |
|---|
| 208 | 208 | /* Now try a real access */ |
|---|