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
ff555c6d
Commit
ff555c6d
authored
Nov 22, 2014
by
Uwe L. Korn
Committed by
Jean-Baptiste Kempf
Nov 23, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: Add support for AlbumArtist meta
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
4716a65f
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
5 deletions
+13
-5
include/vlc/libvlc_media.h
include/vlc/libvlc_media.h
+2
-1
include/vlc_meta.h
include/vlc_meta.h
+4
-1
lib/media.c
lib/media.c
+4
-2
modules/lua/libs/input.c
modules/lua/libs/input.c
+1
-0
src/input/meta.c
src/input/meta.c
+2
-1
No files found.
include/vlc/libvlc_media.h
View file @
ff555c6d
...
...
@@ -73,7 +73,8 @@ typedef enum libvlc_meta_t {
libvlc_meta_Season
,
libvlc_meta_Episode
,
libvlc_meta_ShowName
,
libvlc_meta_Actors
libvlc_meta_Actors
,
libvlc_meta_AlbumArtist
/* Add new meta types HERE */
}
libvlc_meta_t
;
...
...
include/vlc_meta.h
View file @
ff555c6d
...
...
@@ -55,9 +55,10 @@ typedef enum vlc_meta_type_t
vlc_meta_Episode
,
vlc_meta_ShowName
,
vlc_meta_Actors
,
vlc_meta_AlbumArtist
}
vlc_meta_type_t
;
#define VLC_META_TYPE_COUNT 2
3
#define VLC_META_TYPE_COUNT 2
4
#define ITEM_PREPARSED 1
#define ITEM_ARTURL_FETCHED 2
...
...
@@ -137,6 +138,7 @@ VLC_API int input_item_WriteMeta(vlc_object_t *, input_item_t *);
#define vlc_meta_SetEpisode( meta, b ) vlc_meta_Set( meta, vlc_meta_Episode, b )
#define vlc_meta_SetShowName( meta, b ) vlc_meta_Set( meta, vlc_meta_ShowName, b )
#define vlc_meta_SetActors( meta, b ) vlc_meta_Set( meta, vlc_meta_Actors, b )
#define vlc_meta_SetAlbumArtist( meta, b ) vlc_meta_Set( meta, vlc_meta_AlbumArtist, b )
#define VLC_META_TITLE vlc_meta_TypeToLocalizedString( vlc_meta_Title )
#define VLC_META_ARTIST vlc_meta_TypeToLocalizedString( vlc_meta_Artist )
...
...
@@ -160,6 +162,7 @@ VLC_API int input_item_WriteMeta(vlc_object_t *, input_item_t *);
#define VLC_META_EPISODE vlc_meta_TypeToLocalizedString( vlc_meta_Episode )
#define VLC_META_SHOW_NAME vlc_meta_TypeToLocalizedString( vlc_meta_ShowName )
#define VLC_META_ACTORS vlc_meta_TypeToLocalizedString( vlc_meta_Actors )
#define VLC_META_ALBUMARTIST vlc_meta_TypeToLocalizedString( vlc_meta_AlbumArtist )
#define VLC_META_EXTRA_MB_ALBUMID "MB_ALBUMID"
...
...
lib/media.c
View file @
ff555c6d
...
...
@@ -68,7 +68,8 @@ static const vlc_meta_type_t libvlc_to_vlc_meta[] =
[
libvlc_meta_Season
]
=
vlc_meta_Season
,
[
libvlc_meta_Episode
]
=
vlc_meta_Episode
,
[
libvlc_meta_ShowName
]
=
vlc_meta_ShowName
,
[
libvlc_meta_Actors
]
=
vlc_meta_Actors
[
libvlc_meta_Actors
]
=
vlc_meta_Actors
,
[
libvlc_meta_AlbumArtist
]
=
vlc_meta_AlbumArtist
};
static
const
libvlc_meta_t
vlc_to_libvlc_meta
[]
=
...
...
@@ -95,7 +96,8 @@ static const libvlc_meta_t vlc_to_libvlc_meta[] =
[
vlc_meta_Season
]
=
libvlc_meta_Season
,
[
vlc_meta_Episode
]
=
libvlc_meta_Episode
,
[
vlc_meta_ShowName
]
=
libvlc_meta_ShowName
,
[
vlc_meta_Actors
]
=
libvlc_meta_Actors
[
vlc_meta_Actors
]
=
libvlc_meta_Actors
,
[
vlc_meta_AlbumArtist
]
=
libvlc_meta_AlbumArtist
};
/**************************************************************************
...
...
modules/lua/libs/input.c
View file @
ff555c6d
...
...
@@ -338,6 +338,7 @@ static int vlclua_input_item_set_meta( lua_State *L )
META_TYPE
(
Episode
,
"episode"
)
META_TYPE
(
ShowName
,
"show_name"
)
META_TYPE
(
Actors
,
"actors"
)
META_TYPE
(
AlbumArtist
,
"album_artist"
)
};
#undef META_TYPE
...
...
src/input/meta.c
View file @
ff555c6d
...
...
@@ -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
7
]
=
static
const
char
posix_names
[][
1
8
]
=
{
[
vlc_meta_Title
]
=
N_
(
"Title"
),
[
vlc_meta_Artist
]
=
N_
(
"Artist"
),
...
...
@@ -75,6 +75,7 @@ const char * vlc_meta_TypeToLocalizedString( vlc_meta_type_t meta_type )
[
vlc_meta_Episode
]
=
N_
(
"Episode"
),
[
vlc_meta_ShowName
]
=
N_
(
"Show Name"
),
[
vlc_meta_Actors
]
=
N_
(
"Actors"
),
[
vlc_meta_AlbumArtist
]
=
N_
(
"Album Artist"
)
};
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