Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
556b8276
Commit
556b8276
authored
Mar 31, 2004
by
Anil Daoud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compilation fix
parent
3dcdd8d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
modules/gui/ncurses/ncurses.c
modules/gui/ncurses/ncurses.c
+6
-9
No files found.
modules/gui/ncurses/ncurses.c
View file @
556b8276
...
...
@@ -811,25 +811,22 @@ static void Redraw ( intf_thread_t *p_intf, time_t *t_last_refresh )
if
(
p_input
)
{
input_info_category_t
*
p_category
;
input_info_t
*
p_info
;
int
i
,
j
;
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
p_category
=
p_input
->
stream
.
p_info
;
while
(
p_category
)
for
(
i
=
0
;
i
<
p_input
->
p_item
->
i_categories
;
i
++
)
{
info_category_t
*
p_category
=
p_input
->
p_item
->
pp_categories
[
i
];
if
(
y
>=
y_end
)
break
;
MainBoxWrite
(
p_intf
,
l
++
,
1
,
" [%s]"
,
p_category
->
psz_name
);
p_info
=
p_category
->
p_info
;
while
(
p_info
)
for
(
j
=
0
;
j
<
p_category
->
i_infos
;
j
++
)
{
info_t
*
p_info
=
p_category
->
pp_infos
[
j
];
if
(
y
>=
y_end
)
break
;
MainBoxWrite
(
p_intf
,
l
++
,
1
,
" %s: %s"
,
p_info
->
psz_name
,
p_info
->
psz_value
);
p_info
=
p_info
->
p_next
;
}
p_category
=
p_category
->
p_next
;
}
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_
lock
);
vlc_mutex_unlock
(
&
p_input
->
p_item
->
lock
);
}
else
{
...
...
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