Changeset 2c036cf31c4e81f5ebaf01b863fbf48fabdb22f1
- Timestamp:
- 21/10/06 22:21:03
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1161462063 +0000
- git-parent:
[fca47616535d31d7cd321d86e08da32cdb9108dd]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1161462063 +0000
- Message:
Fix Bonjour discovery
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r19f542a |
r2c036cf |
|
| 309 | 309 | } |
|---|
| 310 | 310 | |
|---|
| 311 | | playlist_NodesCreate( p_sys->p_playlist, _("Bonjour"), |
|---|
| 312 | | &p_sys->p_node_cat,&p_sys->p_node_one, |
|---|
| 313 | | VLC_TRUE ); |
|---|
| | 311 | p_sys->p_node_cat = playlist_NodeCreate( p_sys->p_playlist, _("Bonjour"), |
|---|
| | 312 | p_sys->p_playlist->p_root_category ); |
|---|
| | 313 | p_sys->p_node_one = playlist_NodeCreate( p_sys->p_playlist, _("Bonjour"), |
|---|
| | 314 | p_sys->p_playlist->p_root_onelevel ); |
|---|
| | 315 | p_sys->p_node_one->p_input->i_id = p_sys->p_node_cat->p_input->i_id; |
|---|
| | 316 | |
|---|
| | 317 | p_sys->p_node_one->i_flags |= PLAYLIST_RO_FLAG; |
|---|
| | 318 | p_sys->p_node_cat->i_flags |= PLAYLIST_RO_FLAG; |
|---|
| | 319 | p_sys->p_node_one->i_flags |= PLAYLIST_SKIP_FLAG; |
|---|
| | 320 | p_sys->p_node_cat->i_flags |= PLAYLIST_SKIP_FLAG; |
|---|
| | 321 | |
|---|
| 314 | 322 | p_sd->pf_run = Run; |
|---|
| 315 | 323 | |
|---|