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
a6ca4e4c
Commit
a6ca4e4c
authored
Oct 16, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Meta: add DiscTotal
parent
5cf3ca48
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
include/vlc_meta.h
include/vlc_meta.h
+3
-2
modules/lua/libs/input.c
modules/lua/libs/input.c
+1
-0
No files found.
include/vlc_meta.h
View file @
a6ca4e4c
...
@@ -57,10 +57,11 @@ typedef enum vlc_meta_type_t
...
@@ -57,10 +57,11 @@ typedef enum vlc_meta_type_t
vlc_meta_ShowName
,
vlc_meta_ShowName
,
vlc_meta_Actors
,
vlc_meta_Actors
,
vlc_meta_AlbumArtist
,
vlc_meta_AlbumArtist
,
vlc_meta_DiscNumber
vlc_meta_DiscNumber
,
vlc_meta_DiscTotal
}
vlc_meta_type_t
;
}
vlc_meta_type_t
;
#define VLC_META_TYPE_COUNT 2
6
#define VLC_META_TYPE_COUNT 2
7
#define ITEM_PREPARSED 1
#define ITEM_PREPARSED 1
#define ITEM_ARTURL_FETCHED 2
#define ITEM_ARTURL_FETCHED 2
...
...
modules/lua/libs/input.c
View file @
a6ca4e4c
...
@@ -341,6 +341,7 @@ static int vlclua_input_item_set_meta( lua_State *L )
...
@@ -341,6 +341,7 @@ static int vlclua_input_item_set_meta( lua_State *L )
META_TYPE
(
Actors
,
"actors"
)
META_TYPE
(
Actors
,
"actors"
)
META_TYPE
(
AlbumArtist
,
"album_artist"
)
META_TYPE
(
AlbumArtist
,
"album_artist"
)
META_TYPE
(
DiscNumber
,
"disc_number"
)
META_TYPE
(
DiscNumber
,
"disc_number"
)
META_TYPE
(
DiscTotal
,
"disc_total"
)
};
};
#undef META_TYPE
#undef META_TYPE
...
...
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