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
f67c6080
Commit
f67c6080
authored
Feb 23, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ncurses: repare some of the locking problem
(still a big problem with callbacks that execute an action directly)
parent
c3cf2591
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
24 deletions
+39
-24
modules/gui/ncurses.c
modules/gui/ncurses.c
+39
-24
No files found.
modules/gui/ncurses.c
View file @
f67c6080
...
...
@@ -101,9 +101,8 @@ static void PlaylistAddNode( intf_thread_t *, playlist_item_t *, int, const char
static
void
PlaylistDestroy
(
intf_thread_t
*
);
static
int
PlaylistChanged
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
,
void
*
);
static
inline
bool
PlaylistIsPlaying
(
intf_thread_t
*
,
playlist_item_t
*
);
static
void
FindIndex
(
intf_thread_t
*
);
static
inline
bool
PlaylistIsPlaying
(
playlist_t
*
,
playlist_item_t
*
);
static
void
FindIndex
(
intf_thread_t
*
,
playlist_t
*
);
static
void
SearchPlaylist
(
intf_thread_t
*
,
char
*
);
static
int
SubSearchPlaylist
(
intf_thread_t
*
,
char
*
,
int
,
int
);
...
...
@@ -240,7 +239,6 @@ static int Open( vlc_object_t *p_this )
{
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_this
;
intf_sys_t
*
p_sys
;
vlc_value_t
val
;
/* Allocate instance and initialize some members */
p_sys
=
p_intf
->
p_sys
=
malloc
(
sizeof
(
intf_sys_t
)
);
...
...
@@ -405,10 +403,14 @@ static void Run( intf_thread_t *p_intf )
p_sys
->
b_box_cleared
=
false
;
}
PL_LOCK
;
if
(
p_sys
->
b_box_plidx_follow
&&
playlist_CurrentPlayingItem
(
p_playlist
)
)
{
FindIndex
(
p_intf
);
PL_UNLOCK
;
FindIndex
(
p_intf
,
p_playlist
);
}
else
PL_UNLOCK
;
while
(
(
i_key
=
wgetch
(
p_sys
->
w
)
)
!=
-
1
)
{
...
...
@@ -619,7 +621,7 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
/* Playlist navigation */
case
'g'
:
FindIndex
(
p_intf
);
FindIndex
(
p_intf
,
p_playlist
);
break
;
case
KEY_HOME
:
p_sys
->
i_box_plidx
=
0
;
...
...
@@ -714,9 +716,12 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
int
i_max
=
p_sys
->
i_plist_entries
;
if
(
p_sys
->
i_box_plidx
>=
i_max
)
p_sys
->
i_box_plidx
=
i_max
-
1
;
if
(
p_sys
->
i_box_plidx
<
0
)
p_sys
->
i_box_plidx
=
0
;
if
(
PlaylistIsPlaying
(
p_intf
,
p_sys
->
pp_plist
[
p_sys
->
i_box_plidx
]
->
p_item
)
)
PL_LOCK
;
if
(
PlaylistIsPlaying
(
p_playlist
,
p_sys
->
pp_plist
[
p_sys
->
i_box_plidx
]
->
p_item
)
)
b_box_plidx_follow
=
true
;
PL_UNLOCK
;
p_sys
->
b_box_plidx_follow
=
b_box_plidx_follow
;
ReturnTrue
;
}
...
...
@@ -766,9 +771,13 @@ static int HandleKey( intf_thread_t *p_intf, int i_key )
playlist_item_t
*
p_parent
=
p_sys
->
p_node
;
if
(
!
p_parent
)
p_parent
=
playlist_CurrentPlayingItem
(
p_playlist
)
?
playlist_CurrentPlayingItem
(
p_playlist
)
->
p_parent
:
NULL
;
if
(
!
p_parent
)
p_parent
=
p_playlist
->
p_local_onelevel
;
{
PL_LOCK
;
p_parent
=
playlist_CurrentPlayingItem
(
p_playlist
)
?
playlist_CurrentPlayingItem
(
p_playlist
)
->
p_parent
:
NULL
;
PL_UNLOCK
;
if
(
!
p_parent
)
p_parent
=
p_playlist
->
p_local_onelevel
;
}
while
(
p_parent
->
p_parent
&&
p_parent
->
p_parent
->
p_parent
)
p_parent
=
p_parent
->
p_parent
;
...
...
@@ -2110,7 +2119,7 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
}
if
(
p_sys
->
b_box_plidx_follow
)
{
FindIndex
(
p_intf
);
FindIndex
(
p_intf
,
p_playlist
);
}
if
(
p_sys
->
i_box_plidx
<
0
)
p_sys
->
i_box_plidx
=
0
;
...
...
@@ -2147,13 +2156,17 @@ static void Redraw( intf_thread_t *p_intf, time_t *t_last_refresh )
playlist_item_t
*
p_item
=
p_sys
->
pp_plist
[
i_item
]
->
p_item
;
playlist_item_t
*
p_node
=
p_sys
->
p_node
;
int
c
=
' '
;
input_thread_t
*
p_input2
=
playlist_CurrentInput
(
p_playlist
);
PL_LOCK
;
if
(
(
p_node
&&
p_item
->
p_input
==
p_node
->
p_input
)
||
(
!
p_node
&&
p
laylist_CurrentInput
(
p_playlist
)
&&
(
!
p_node
&&
p
_input2
&&
p_item
->
p_input
==
playlist_CurrentPlayingItem
(
p_playlist
)
->
p_input
)
)
c
=
'*'
;
else
if
(
p_item
==
p_node
||
(
p_item
!=
p_node
&&
PlaylistIsPlaying
(
p_
intf
,
p_item
)
)
)
PlaylistIsPlaying
(
p_
playlist
,
p_item
)
)
)
c
=
'>'
;
PL_UNLOCK
;
if
(
y
>=
y_end
)
break
;
if
(
b_selected
)
...
...
@@ -2318,18 +2331,17 @@ static int PlaylistChanged( vlc_object_t *p_this, const char *psz_variable,
}
/* Playlist suxx */
static
inline
bool
PlaylistIsPlaying
(
intf_thread_t
*
p_intf
,
playlist_item_t
*
p_item
)
/* This function have to be called with the playlist locked */
static
inline
bool
PlaylistIsPlaying
(
playlist_t
*
p_playlist
,
playlist_item_t
*
p_item
)
{
playlist_t
*
p_playlist
=
pl_Hold
(
p_intf
);
playlist_item_t
*
p_played_item
=
playlist_CurrentPlayingItem
(
p_playlist
);
vlc_object_release
(
p_playlist
);
playlist_item_t
*
p_played_item
=
playlist_CurrentPlayingItem
(
p_playlist
);
return
(
p_item
!=
NULL
&&
p_played_item
!=
NULL
&&
p_item
->
p_input
!=
NULL
&&
p_played_item
->
p_input
!=
NULL
&&
p_item
->
p_input
->
i_id
==
p_played_item
->
p_input
->
i_id
);
}
static
void
FindIndex
(
intf_thread_t
*
p_intf
)
static
void
FindIndex
(
intf_thread_t
*
p_intf
,
playlist_t
*
p_playlist
)
{
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
int
i
;
...
...
@@ -2337,21 +2349,26 @@ static void FindIndex( intf_thread_t *p_intf )
if
(
p_sys
->
i_box_plidx
<
p_sys
->
i_plist_entries
&&
p_sys
->
i_box_plidx
>=
0
)
{
playlist_item_t
*
p_item
=
p_sys
->
pp_plist
[
p_sys
->
i_box_plidx
]
->
p_item
;
PL_LOCK
;
if
(
(
p_item
->
i_children
==
0
&&
p_item
==
p_sys
->
p_node
)
||
PlaylistIsPlaying
(
p_intf
,
p_item
)
)
PlaylistIsPlaying
(
p_playlist
,
p_item
)
)
{
PL_UNLOCK
;
return
;
}
}
for
(
i
=
0
;
i
<
p_sys
->
i_plist_entries
;
i
++
)
{
playlist_item_t
*
p_item
=
p_sys
->
pp_plist
[
i
]
->
p_item
;
if
(
(
p_item
->
i_children
==
0
&&
p_item
==
p_sys
->
p_node
)
||
PlaylistIsPlaying
(
p_
intf
,
p_sys
->
pp_plist
[
i
]
->
p_item
)
)
PlaylistIsPlaying
(
p_
playlist
,
p_sys
->
pp_plist
[
i
]
->
p_item
)
)
{
p_sys
->
i_box_plidx
=
i
;
break
;
}
}
PL_UNLOCK
;
}
static
void
PlaylistDestroy
(
intf_thread_t
*
p_intf
)
...
...
@@ -2524,8 +2541,6 @@ static void ReadDir( intf_thread_t *p_intf )
struct
stat
stat_data
;
#endif
struct
dir_entry_t
*
p_dir_entry
;
int
i_size_entry
=
strlen
(
p_sys
->
psz_current_dir
)
+
strlen
(
psz_entry
)
+
2
;
char
*
psz_uri
;
if
(
p_sys
->
b_show_hidden_files
==
false
&&
...
...
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