Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
45af95ff
Commit
45af95ff
authored
Jun 24, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaning.
parent
69d1ac0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
30 deletions
+22
-30
modules/misc/notify/notify.c
modules/misc/notify/notify.c
+22
-30
No files found.
modules/misc/notify/notify.c
View file @
45af95ff
...
...
@@ -154,16 +154,15 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
param
)
{
VLC_UNUSED
(
psz_var
);
VLC_UNUSED
(
oldval
);
VLC_UNUSED
(
newval
);
char
psz_tmp
[
MAX_LENGTH
];
char
psz_notify
[
MAX_LENGTH
];
char
*
psz_title
=
NULL
;
char
*
psz_artist
=
NULL
;
char
*
psz_album
=
NULL
;
char
*
psz_arturl
=
NULL
;
input_thread_t
*
p_input
=
playlist_CurrentInput
(
(
playlist_t
*
)
p_this
);
intf_thread_t
*
p_intf
=
param
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
char
psz_tmp
[
MAX_LENGTH
];
char
psz_notify
[
MAX_LENGTH
];
char
*
psz_title
;
char
*
psz_artist
;
char
*
psz_album
;
char
*
psz_arturl
;
input_thread_t
*
p_input
=
playlist_CurrentInput
(
(
playlist_t
*
)
p_this
);
intf_thread_t
*
p_intf
=
param
;
intf_sys_t
*
p_sys
=
p_intf
->
p_sys
;
if
(
!
p_input
)
return
VLC_SUCCESS
;
...
...
@@ -181,35 +180,28 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
/* Playing something ... */
input_item_t
*
p_input_item
=
input_GetItem
(
p_input
);
psz_artist
=
input_item_GetArtist
(
p_input_item
);
psz_album
=
input_item_GetAlbum
(
p_input_item
);
psz_title
=
input_item_GetTitleFbName
(
p_input_item
);
/* We need at least a title */
if
(
EMPTY_STR
(
psz_title
)
)
{
/* Not enough metadata ... */
{
free
(
psz_title
);
free
(
psz_artist
);
free
(
psz_album
);
vlc_object_release
(
p_input
);
return
VLC_SUCCESS
;
}
if
(
EMPTY_STR
(
psz_artist
)
)
{
free
(
psz_artist
);
psz_artist
=
NULL
;
}
if
(
EMPTY_STR
(
psz_album
)
)
psz_artist
=
input_item_GetArtist
(
p_input_item
);
psz_album
=
input_item_GetAlbum
(
p_input_item
);
if
(
!
EMPTY_STR
(
psz_artist
)
)
{
free
(
psz_album
);
psz_album
=
NULL
;
if
(
!
EMPTY_STR
(
psz_album
)
)
snprintf
(
psz_tmp
,
MAX_LENGTH
,
"<b>%s</b>
\n
%s
\n
[%s]"
,
psz_title
,
psz_artist
,
psz_album
);
else
snprintf
(
psz_tmp
,
MAX_LENGTH
,
"<b>%s</b>
\n
%s"
,
psz_title
,
psz_artist
);
}
if
(
psz_artist
&&
psz_album
)
snprintf
(
psz_tmp
,
MAX_LENGTH
,
"<b>%s</b>
\n
%s
\n
[%s]"
,
psz_title
,
psz_artist
,
psz_album
);
else
if
(
psz_artist
)
snprintf
(
psz_tmp
,
MAX_LENGTH
,
"<b>%s</b>
\n
%s"
,
psz_title
,
psz_artist
);
else
snprintf
(
psz_tmp
,
MAX_LENGTH
,
"<b>%s</b>"
,
psz_title
);
...
...
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