Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
a1e1abb4
Commit
a1e1abb4
authored
Mar 30, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_meta.h: introduced VLC_META_NOW_PLAYING. http.c: use NOW_PLAYING for song title.
parent
072e4a8d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
include/vlc_meta.h
include/vlc_meta.h
+1
-0
modules/access/http.c
modules/access/http.c
+2
-2
No files found.
include/vlc_meta.h
View file @
a1e1abb4
...
...
@@ -36,6 +36,7 @@
#define VLC_META_SETTING N_("Setting")
#define VLC_META_URL N_("URL")
#define VLC_META_LANGUAGE N_("Language")
#define VLC_META_NOW_PLAYING N_("Now Playing")
#define VLC_META_CDDB_ARTIST N_("CDDB Artist")
#define VLC_META_CDDB_CATEGORY N_("CDDB Category")
...
...
modules/access/http.c
View file @
a1e1abb4
...
...
@@ -749,13 +749,13 @@ static int Control( access_t *p_access, int i_query, va_list args )
msg_Dbg
(
p_access
,
"GET META %s %s %s"
,
p_sys
->
psz_icy_name
,
p_sys
->
psz_icy_genre
,
p_sys
->
psz_icy_title
);
if
(
p_sys
->
psz_icy_name
)
vlc_meta_Add
(
*
pp_meta
,
VLC_META_
DESCRIPTION
,
vlc_meta_Add
(
*
pp_meta
,
VLC_META_
TITLE
,
p_sys
->
psz_icy_name
);
if
(
p_sys
->
psz_icy_genre
)
vlc_meta_Add
(
*
pp_meta
,
VLC_META_GENRE
,
p_sys
->
psz_icy_genre
);
if
(
p_sys
->
psz_icy_title
)
vlc_meta_Add
(
*
pp_meta
,
VLC_META_
TITLE
,
vlc_meta_Add
(
*
pp_meta
,
VLC_META_
NOW_PLAYING
,
p_sys
->
psz_icy_title
);
break
;
...
...
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