Changeset 208d017e7c250518e1601a9610cec0866012ca37
- Timestamp:
- 17/03/08 18:38:21
(9 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1205775501 +0200
- git-parent:
[55083e6b6e768dc817b2f88e6d53232c20729075]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1205775501 +0200
- Message:
Set the proper flags for item options
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r55083e6 |
r208d017 |
|
| 184 | 184 | |
|---|
| 185 | 185 | p_input = input_ItemNewExt( p_playlist, psz_mrl, psz_name, |
|---|
| 186 | | i_options, ppsz_options, i_duration ); |
|---|
| | 186 | 0, NULL, i_duration ); |
|---|
| 187 | 187 | if ( psz_artist && *psz_artist ) |
|---|
| 188 | 188 | input_ItemAddInfo( p_input, _(VLC_META_INFO_CAT), |
|---|
| 189 | 189 | _(VLC_META_ARTIST), "%s", psz_artist ); |
|---|
| 190 | 190 | input_ItemAddSubItem( p_current_input, p_input ); |
|---|
| | 191 | for( unsigned i = 0; i < i_options; i++ ) |
|---|
| | 192 | input_ItemAddOpt( p_input, ppsz_options[i], 0 ); |
|---|
| 191 | 193 | vlc_gc_decref( p_input ); |
|---|
| 192 | 194 | free( psz_mrl ); |
|---|