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
8db74e20
Commit
8db74e20
authored
Feb 08, 2014
by
Mark Lee
Committed by
Jean-Baptiste Kempf
Feb 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib: expose new meta data attributes
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
ec6f2319
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
include/vlc/libvlc_media.h
include/vlc/libvlc_media.h
+7
-1
lib/media.c
lib/media.c
+14
-2
No files found.
include/vlc/libvlc_media.h
View file @
8db74e20
...
...
@@ -67,7 +67,13 @@ typedef enum libvlc_meta_t {
libvlc_meta_Publisher
,
libvlc_meta_EncodedBy
,
libvlc_meta_ArtworkURL
,
libvlc_meta_TrackID
libvlc_meta_TrackID
,
libvlc_meta_TrackTotal
,
libvlc_meta_Director
,
libvlc_meta_Season
,
libvlc_meta_Episode
,
libvlc_meta_ShowName
,
libvlc_meta_Actors
/* Add new meta types HERE */
}
libvlc_meta_t
;
...
...
lib/media.c
View file @
8db74e20
...
...
@@ -61,7 +61,13 @@ static const vlc_meta_type_t libvlc_to_vlc_meta[] =
[
libvlc_meta_Publisher
]
=
vlc_meta_Publisher
,
[
libvlc_meta_EncodedBy
]
=
vlc_meta_EncodedBy
,
[
libvlc_meta_ArtworkURL
]
=
vlc_meta_ArtworkURL
,
[
libvlc_meta_TrackID
]
=
vlc_meta_TrackID
[
libvlc_meta_TrackID
]
=
vlc_meta_TrackID
,
[
libvlc_meta_TrackTotal
]
=
vlc_meta_TrackTotal
,
[
libvlc_meta_Director
]
=
vlc_meta_Director
,
[
libvlc_meta_Season
]
=
vlc_meta_Season
,
[
libvlc_meta_Episode
]
=
vlc_meta_Episode
,
[
libvlc_meta_ShowName
]
=
vlc_meta_ShowName
,
[
libvlc_meta_Actors
]
=
vlc_meta_Actors
};
static
const
libvlc_meta_t
vlc_to_libvlc_meta
[]
=
...
...
@@ -82,7 +88,13 @@ static const libvlc_meta_t vlc_to_libvlc_meta[] =
[
vlc_meta_Publisher
]
=
libvlc_meta_Publisher
,
[
vlc_meta_EncodedBy
]
=
libvlc_meta_EncodedBy
,
[
vlc_meta_ArtworkURL
]
=
libvlc_meta_ArtworkURL
,
[
vlc_meta_TrackID
]
=
libvlc_meta_TrackID
[
vlc_meta_TrackID
]
=
libvlc_meta_TrackID
,
[
vlc_meta_TrackTotal
]
=
libvlc_meta_TrackTotal
,
[
vlc_meta_Director
]
=
libvlc_meta_Director
,
[
vlc_meta_Season
]
=
libvlc_meta_Season
,
[
vlc_meta_Episode
]
=
libvlc_meta_Episode
,
[
vlc_meta_ShowName
]
=
libvlc_meta_ShowName
,
[
vlc_meta_Actors
]
=
libvlc_meta_Actors
};
/**************************************************************************
...
...
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