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
7c7948db
Commit
7c7948db
authored
Feb 06, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide vlc_meta_TypeToLocalizedString for the new types
And a forgotten old one...
parent
2396ab52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/input/meta.c
src/input/meta.c
+7
-1
No files found.
src/input/meta.c
View file @
7c7948db
...
...
@@ -50,7 +50,7 @@ struct vlc_meta_t
/* FIXME bad name convention */
const
char
*
vlc_meta_TypeToLocalizedString
(
vlc_meta_type_t
meta_type
)
{
static
const
char
posix_names
[][
1
6
]
=
static
const
char
posix_names
[][
1
7
]
=
{
[
vlc_meta_Title
]
=
N_
(
"Title"
),
[
vlc_meta_Artist
]
=
N_
(
"Artist"
),
...
...
@@ -69,6 +69,12 @@ const char * vlc_meta_TypeToLocalizedString( vlc_meta_type_t meta_type )
[
vlc_meta_EncodedBy
]
=
N_
(
"Encoded by"
),
[
vlc_meta_ArtworkURL
]
=
N_
(
"Artwork URL"
),
[
vlc_meta_TrackID
]
=
N_
(
"Track ID"
),
[
vlc_meta_TrackTotal
]
=
N_
(
"Number of Tracks"
),
[
vlc_meta_Director
]
=
N_
(
"Director"
),
[
vlc_meta_Season
]
=
N_
(
"Season"
),
[
vlc_meta_Episode
]
=
N_
(
"Episode"
),
[
vlc_meta_ShowName
]
=
N_
(
"Show Name"
),
[
vlc_meta_Actors
]
=
N_
(
"Actors"
),
};
assert
(
meta_type
<
(
sizeof
(
posix_names
)
/
sizeof
(
posix_names
[
0
])));
...
...
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