Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
9969ca2f
Commit
9969ca2f
authored
Feb 23, 2010
by
Jakob Leben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: remove unused ItemToNode()
parent
abc84401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
76 deletions
+0
-76
src/playlist/item.c
src/playlist/item.c
+0
-76
No files found.
src/playlist/item.c
View file @
9969ca2f
...
...
@@ -36,8 +36,6 @@ static void GoAndPreparse( playlist_t *p_playlist, int i_mode,
playlist_item_t
*
);
static
void
ChangeToNode
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_item
);
static
playlist_item_t
*
ItemToNode
(
playlist_t
*
,
playlist_item_t
*
,
bool
);
static
int
RecursiveAddIntoParent
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_parent
,
input_item_node_t
*
p_node
,
int
i_pos
,
bool
b_flat
,
...
...
@@ -480,80 +478,6 @@ playlist_item_t *playlist_InsertInputItemTree (
* Playlist item misc operations
*****************************************************************************/
/**
* Item to node
*
* Transform an item to a node. Return the node in the category tree, or NULL
* if not found there
* This function must be entered without the playlist lock
* \param p_playlist the playlist object
* \param p_item the item to transform
* \param b_locked TRUE if the playlist is locked
* \return the item transform in a node
*/
static
playlist_item_t
*
ItemToNode
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_item
,
bool
b_locked
)
{
PL_LOCK_IF
(
!
b_locked
);
assert
(
p_item
->
p_parent
);
bool
b_flat
=
false
;
playlist_item_t
*
p_up
=
p_item
;
while
(
p_up
->
p_parent
)
{
if
(
p_up
->
p_parent
==
p_playlist
->
p_playing
||
p_up
->
p_parent
==
p_playlist
->
p_media_library
)
{
if
(
!
pl_priv
(
p_playlist
)
->
b_tree
)
b_flat
=
true
;
break
;
}
p_up
=
p_up
->
p_parent
;
}
if
(
!
b_flat
)
{
ChangeToNode
(
p_playlist
,
p_item
);
if
(
p_up
==
p_playlist
->
p_root
)
var_SetAddress
(
p_playlist
,
"item-change"
,
p_item
->
p_input
);
PL_UNLOCK_IF
(
!
b_locked
);
return
p_item
;
}
else
{
playlist_item_t
*
p_status_item
=
get_current_status_item
(
p_playlist
);
playlist_item_t
*
p_status_node
=
get_current_status_node
(
p_playlist
);
if
(
p_item
==
p_status_item
)
{
/* We're deleting the current playlist item. Update
* the playlist object to point at the previous item
* so the playlist won't be restarted */
playlist_item_t
*
p_prev_status_item
=
NULL
;
int
i
=
0
;
while
(
i
<
p_status_node
->
i_children
&&
p_status_node
->
pp_children
[
i
]
!=
p_status_item
)
{
p_prev_status_item
=
p_status_node
->
pp_children
[
i
];
i
++
;
}
if
(
i
==
p_status_node
->
i_children
)
p_prev_status_item
=
NULL
;
if
(
p_prev_status_item
)
set_current_status_item
(
p_playlist
,
p_prev_status_item
);
}
DeleteFromInput
(
p_playlist
,
p_item
->
p_input
,
p_playlist
->
p_root
,
false
);
pl_priv
(
p_playlist
)
->
b_reset_currently_playing
=
true
;
vlc_cond_signal
(
&
pl_priv
(
p_playlist
)
->
signal
);
PL_UNLOCK_IF
(
!
b_locked
);
return
p_item
->
p_parent
;
}
}
/**
* Find an item within a root, given its input id.
*
...
...
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