Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7837da55
Commit
7837da55
authored
Aug 18, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist/item.c: Rework item addition to make it work better with the current playlist system.
parent
9d5255fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
32 deletions
+56
-32
src/playlist/item.c
src/playlist/item.c
+56
-32
No files found.
src/playlist/item.c
View file @
7837da55
...
...
@@ -40,55 +40,83 @@ static int DeleteInner( playlist_t * p_playlist, playlist_item_t *p_item,
static
void
input_item_subitem_added
(
const
vlc_event_t
*
p_event
,
void
*
user_data
)
{
playlist_t
*
p_playlist
=
user_data
;
playlist_item_t
*
p_parent_playlist_item
=
user_data
;
playlist_t
*
p_playlist
=
p_parent_playlist_item
->
p_playlist
;
input_item_t
*
p_parent
,
*
p_child
;
vlc_bool_t
b_play
=
var_CreateGetBool
(
p_playlist
,
"playlist-autostart"
)
;
playlist_item_t
*
p_item_in_category
;
playlist_item_t
*
p_current
;
playlist_item_t
*
p_child_in_category
;
playlist_item_t
*
p_item_in_category
;
vlc_bool_t
b_play
;
p_parent
=
p_event
->
p_obj
;
p_child
=
p_event
->
u
.
input_item_subitem_added
.
p_new_child
;
p_current
=
playlist_ItemGetByInput
(
p_playlist
,
p_parent
,
VLC_FALSE
);
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_current
,
VLC_FALSE
);
if
(
!
p_item_in_category
)
p_item_in_category
=
p_current
;
b_play
=
b_play
&&
p_current
==
p_playlist
->
status
.
p_item
;
PL_LOCK
;
b_play
=
var_CreateGetBool
(
p_playlist
,
"playlist-autostart"
);
playlist_NodeAddInput
(
p_playlist
,
p_child
,
p_item_in_category
,
PLAYLIST_APPEND
|
PLAYLIST_SPREPARSE
,
PLAYLIST_END
,
VLC_FALSE
);
/* This part is really hakish, but this playlist system isn't simple */
/* First check if we haven't already added the item as we are
* listening using the onelevel and the category representent
* (Because of the playlist design) */
p_child_in_category
=
playlist_ItemFindFromInputAndRoot
(
p_playlist
,
p_child
->
i_id
,
p_playlist
->
p_root_category
,
VLC_FALSE
/* Only non-node */
);
if
(
b_pla
y
)
if
(
!
p_child_in_categor
y
)
{
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
VLC_FALSE
,
p_item_in_category
,
NULL
);
b_play
=
b_play
&&
p_item_in_category
==
p_playlist
->
status
.
p_item
;
/* Then, transform to a node if needed */
p_item_in_category
=
playlist_ItemFindFromInputAndRoot
(
p_playlist
,
p_parent
->
i_id
,
p_playlist
->
p_root_category
,
VLC_FALSE
/* Only non-node */
);
if
(
!
p_item_in_category
)
{
/* Item may have been removed */
PL_UNLOCK
;
return
}
/* If this item is already a node don't transform it */
if
(
p_item_in_category
->
i_children
==
-
1
)
{
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_item_in_category
,
VLC_TRUE
);
}
playlist_BothAddInput
(
p_playlist
,
p_child
,
p_item_in_category
,
PLAYLIST_APPEND
|
PLAYLIST_SPREPARSE
,
PLAYLIST_END
,
NULL
,
NULL
,
VLC_TRUE
);
if
(
b_play
)
{
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
VLC_TRUE
,
p_item_in_category
,
NULL
);
}
}
PL_UNLOCK
;
}
/*****************************************************************************
* Listen to vlc_InputItemAddSubItem event
*****************************************************************************/
static
void
install_input_item_observer
(
playlist_
t
*
p_playlist
,
static
void
install_input_item_observer
(
playlist_
item_t
*
p_item
,
input_item_t
*
p_input
)
{
msg_Dbg
(
p_playlist
,
"Listening to %s with %p"
,
p_input
->
psz_name
,
p_playlist
);
vlc_event_attach
(
&
p_input
->
event_manager
,
vlc_InputItemSubItemAdded
,
input_item_subitem_added
,
p_
playlist
);
p_
item
);
}
static
void
uninstall_input_item_observer
(
playlist_
t
*
p_playlist
,
static
void
uninstall_input_item_observer
(
playlist_
item_t
*
p_item
,
input_item_t
*
p_input
)
{
msg_Dbg
(
p_playlist
,
"Not Listening to %s with %p"
,
p_input
->
psz_name
,
p_playlist
);
vlc_event_detach
(
&
p_input
->
event_manager
,
vlc_InputItemSubItemAdded
,
input_item_subitem_added
,
p_
playlist
);
p_
item
);
}
...
...
@@ -127,7 +155,7 @@ playlist_item_t *__playlist_ItemNewFromInput( vlc_object_t *p_obj,
p_item
->
i_flags
=
0
;
p_item
->
p_playlist
=
p_playlist
;
install_input_item_observer
(
p_
playlist
,
p_input
);
install_input_item_observer
(
p_
item
,
p_input
);
pl_Release
(
p_item
->
p_playlist
);
...
...
@@ -423,15 +451,11 @@ playlist_item_t *playlist_ItemToNode( playlist_t *p_playlist,
p_playlist
,
p_item
->
p_input
->
i_id
,
p_playlist
->
p_root_onelevel
,
VLC_TRUE
);
assert
(
p_item_in_one
);
/* We already have it, and there is nothing more to do */
ChangeToNode
(
p_playlist
,
p_item_in_category
);
if
(
!
p_item_in_one
)
{
if
(
!
b_locked
)
PL_UNLOCK
;
return
p_item_in_category
;
}
/* Item in one is a root, change it to node */
if
(
p_item_in_one
->
p_parent
==
p_playlist
->
p_root_onelevel
)
ChangeToNode
(
p_playlist
,
p_item_in_one
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment