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
14051791
Commit
14051791
authored
Nov 19, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ncurses: display the input's title if it's present instead of the name. Use asprintf()
parent
55287bbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
20 deletions
+23
-20
modules/gui/ncurses.c
modules/gui/ncurses.c
+23
-20
No files found.
modules/gui/ncurses.c
View file @
14051791
...
@@ -1904,48 +1904,51 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
...
@@ -1904,48 +1904,51 @@ static void PlaylistAddNode( intf_thread_t *p_intf, playlist_item_t *p_node,
{
{
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
playlist_item_t
*
p_child
;
playlist_item_t
*
p_child
;
char
*
psz_tmp
;
int
k
;
int
k
;
psz_tmp
=
(
char
*
)
malloc
(
strlen
(
c
)
+
4
);
if
(
psz_tmp
==
NULL
)
return
;
for
(
k
=
0
;
k
<
p_node
->
i_children
;
k
++
)
for
(
k
=
0
;
k
<
p_node
->
i_children
;
k
++
)
{
{
struct
pl_item_t
*
p_pl_item
;
char
*
psz_display
;
char
*
buff
;
int
i_size
;
p_child
=
p_node
->
pp_children
[
k
];
p_child
=
p_node
->
pp_children
[
k
];
i_size
=
strlen
(
c
)
+
strlen
(
p_child
->
p_input
->
psz_name
)
+
4
;
char
*
psz_name
=
input_item_GetTitle
(
p_child
->
p_input
);
buff
=
(
char
*
)
malloc
(
sizeof
(
char
)
*
i_size
);
if
(
!
psz_name
||
!*
psz_name
)
p_pl_item
=
(
struct
pl_item_t
*
)
malloc
(
sizeof
(
struct
pl_item_t
)
);
{
if
(
p_pl_item
==
NULL
||
buff
==
NULL
)
return
;
free
(
psz_name
);
psz_name
=
input_item_GetName
(
p_child
->
p_input
);
}
if
(
strlen
(
c
)
)
if
(
c
&&
*
c
)
{
{
sprintf
(
buff
,
"%s%c-%s"
,
c
,
k
==
p_node
->
i_children
-
1
?
if
(
asprintf
(
&
psz_display
,
"%s%c-%s"
,
c
,
'`'
:
'|'
,
p_child
->
p_input
->
psz_name
);
k
==
p_node
->
i_children
-
1
?
'`'
:
'|'
,
psz_name
)
==
-
1
)
return
;
}
}
else
else
{
{
sprintf
(
buff
,
" %s"
,
p_child
->
p_input
->
psz_name
);
if
(
asprintf
(
&
psz_display
,
" %s"
,
psz_name
)
==
-
1
)
return
;
}
}
p_pl_item
->
psz_display
=
strdup
(
buff
);
free
(
psz_name
);
struct
pl_item_t
*
p_pl_item
=
malloc
(
sizeof
(
struct
pl_item_t
)
);
if
(
!
p_pl_item
)
return
;
p_pl_item
->
psz_display
=
psz_display
;
p_pl_item
->
p_item
=
p_child
;
p_pl_item
->
p_item
=
p_child
;
INSERT_ELEM
(
p_sys
->
pp_plist
,
p_sys
->
i_plist_entries
,
INSERT_ELEM
(
p_sys
->
pp_plist
,
p_sys
->
i_plist_entries
,
p_sys
->
i_plist_entries
,
p_pl_item
);
p_sys
->
i_plist_entries
,
p_pl_item
);
free
(
buff
);
i
++
;
i
++
;
if
(
p_child
->
i_children
>
0
)
if
(
p_child
->
i_children
>
0
)
{
{
sprintf
(
psz_tmp
,
"%s%c "
,
c
,
char
*
psz_tmp
;
k
==
p_node
->
i_children
-
1
?
' '
:
'|'
);
if
(
asprintf
(
&
psz_tmp
,
"%s%c "
,
c
,
k
==
p_node
->
i_children
-
1
?
' '
:
'|'
)
==
-
1
)
return
;
PlaylistAddNode
(
p_intf
,
p_child
,
i
,
PlaylistAddNode
(
p_intf
,
p_child
,
i
,
strlen
(
c
)
?
psz_tmp
:
" "
);
strlen
(
c
)
?
psz_tmp
:
" "
);
free
(
psz_tmp
);
}
}
}
}
free
(
psz_tmp
);
}
}
static
int
PlaylistChanged
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
static
int
PlaylistChanged
(
vlc_object_t
*
p_this
,
const
char
*
psz_variable
,
...
...
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