Changeset 12dcce3f4c95bc1db8cdfda241ff6a38ac92c7b0
- Timestamp:
- 03/05/07 22:42:54
(2 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1178224974 +0000
- git-parent:
[8d3912c26d9eecbf3d74020d28a0c11a0ba5dc22]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1178224974 +0000
- Message:
* src/input/stream.c: fix input-list code.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9b6b0df |
r12dcce3 |
|
| 224 | 224 | stream_t *stream_AccessNew( access_t *p_access, vlc_bool_t b_quick ) |
|---|
| 225 | 225 | { |
|---|
| 226 | | stream_t *s = vlc_stream_create( p_access ); |
|---|
| | 226 | stream_t *s = vlc_stream_create( VLC_OBJECT(p_access) ); |
|---|
| 227 | 227 | stream_sys_t *p_sys; |
|---|
| 228 | 228 | char *psz_list; |
|---|
| … | … | |
| 288 | 288 | { |
|---|
| 289 | 289 | access_t *p_tmp = access2_New( p_access, p_access->psz_access, |
|---|
| 290 | | 0, psz_name, 0 ); |
|---|
| | 290 | "", psz_name, 0 ); |
|---|
| 291 | 291 | |
|---|
| 292 | 292 | if( !p_tmp ) |
|---|
| … | … | |
| 1664 | 1664 | msg_Dbg( s, "opening input `%s'", psz_name ); |
|---|
| 1665 | 1665 | |
|---|
| 1666 | | p_list_access = access2_New( s, p_access->psz_access, 0, psz_name, 0 ); |
|---|
| | 1666 | p_list_access = access2_New( s, p_access->psz_access, "", psz_name, 0 ); |
|---|
| 1667 | 1667 | |
|---|
| 1668 | 1668 | if( !p_list_access ) return 0; |
|---|
| … | … | |
| 1736 | 1736 | msg_Dbg( s, "opening input `%s'", psz_name ); |
|---|
| 1737 | 1737 | |
|---|
| 1738 | | p_list_access = access2_New( s, p_access->psz_access, 0, psz_name, 0 ); |
|---|
| | 1738 | p_list_access = access2_New( s, p_access->psz_access, "", psz_name, 0 ); |
|---|
| 1739 | 1739 | |
|---|
| 1740 | 1740 | if( !p_list_access ) return 0; |
|---|
| … | … | |
| 1793 | 1793 | { |
|---|
| 1794 | 1794 | p_list_access = |
|---|
| 1795 | | access2_New( s, p_access->psz_access, 0, psz_name, 0 ); |
|---|
| | 1795 | access2_New( s, p_access->psz_access, "", psz_name, 0 ); |
|---|
| 1796 | 1796 | } |
|---|
| 1797 | 1797 | else if( i != p_sys->i_list_index ) |
|---|