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
4f4a8d71
Commit
4f4a8d71
authored
Feb 10, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msn: simplify (and remove some dummy strdup).
parent
396acde3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
14 deletions
+7
-14
modules/misc/notify/msn.c
modules/misc/notify/msn.c
+7
-14
No files found.
modules/misc/notify/msn.c
View file @
4f4a8d71
/*****************************************************************************
* msn.c : msn title plugin
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
* Copyright (C) 2005
-2010
the VideoLAN team
* $Id$
*
* Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
...
...
@@ -137,10 +137,6 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
(
void
)
psz_var
;
(
void
)
oldval
;
(
void
)
newval
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
param
;
char
psz_tmp
[
MSN_MAX_LENGTH
];
char
*
psz_title
=
NULL
;
char
*
psz_artist
=
NULL
;
char
*
psz_album
=
NULL
;
char
*
psz_buf
=
NULL
;
input_thread_t
*
p_input
=
playlist_CurrentInput
(
(
playlist_t
*
)
p_this
);
if
(
!
p_input
)
return
VLC_SUCCESS
;
...
...
@@ -154,20 +150,17 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
}
/* Playing something ... */
psz_artist
=
input_item_GetArtist
(
input_GetItem
(
p_input
)
);
psz_album
=
input_item_GetAlbum
(
input_GetItem
(
p_input
)
);
psz_title
=
input_item_GetTitleFbName
(
input_GetItem
(
p_input
)
);
if
(
!
psz_artist
)
psz_artist
=
strdup
(
""
);
if
(
!
psz_album
)
psz_album
=
strdup
(
""
);
psz_buf
=
str_format_meta
(
p_this
,
p_intf
->
p_sys
->
psz_format
);
char
*
psz_artist
=
input_item_GetArtist
(
input_GetItem
(
p_input
)
);
char
*
psz_album
=
input_item_GetAlbum
(
input_GetItem
(
p_input
)
);
char
*
psz_title
=
input_item_GetTitleFbName
(
input_GetItem
(
p_input
)
);
char
*
psz_buf
=
str_format_meta
(
p_this
,
p_intf
->
p_sys
->
psz_format
);
snprintf
(
psz_tmp
,
MSN_MAX_LENGTH
,
"
\\
0Music
\\
01
\\
0%s
\\
0%s
\\
0%s
\\
0%s
\\
0
\\
0
\\
0"
,
psz_buf
,
psz_artist
,
psz_title
,
psz_artist
?
psz_artist
:
""
,
psz_title
?
psz_title
:
""
,
psz_album
);
free
(
psz_buf
);
free
(
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