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
88d6c465
Commit
88d6c465
authored
Apr 05, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ogg: Add parsing for publisher meta
parent
71a82406
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
modules/demux/vorbis.h
modules/demux/vorbis.h
+2
-0
No files found.
modules/demux/vorbis.h
View file @
88d6c465
...
@@ -66,6 +66,7 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
...
@@ -66,6 +66,7 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
bool
hasDescription
=
false
;
bool
hasDescription
=
false
;
bool
hasGenre
=
false
;
bool
hasGenre
=
false
;
bool
hasDate
=
false
;
bool
hasDate
=
false
;
bool
hasPublisher
=
false
;
for
(
;
i_comment
>
0
;
i_comment
--
)
for
(
;
i_comment
>
0
;
i_comment
--
)
{
{
...
@@ -104,6 +105,7 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
...
@@ -104,6 +105,7 @@ static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_d
else
IF_EXTRACT
(
"TRACKNUMBER="
,
TrackNumber
)
else
IF_EXTRACT
(
"TRACKNUMBER="
,
TrackNumber
)
else
IF_EXTRACT
(
"ARTIST="
,
Artist
)
else
IF_EXTRACT
(
"ARTIST="
,
Artist
)
else
IF_EXTRACT
(
"COPYRIGHT="
,
Copyright
)
else
IF_EXTRACT
(
"COPYRIGHT="
,
Copyright
)
else
IF_EXTRACT
(
"ORGANIZATION="
,
Publisher
)
else
IF_EXTRACT
(
"DESCRIPTION="
,
Description
)
else
IF_EXTRACT
(
"DESCRIPTION="
,
Description
)
else
IF_EXTRACT
(
"GENRE="
,
Genre
)
else
IF_EXTRACT
(
"GENRE="
,
Genre
)
else
IF_EXTRACT
(
"DATE="
,
Date
)
else
IF_EXTRACT
(
"DATE="
,
Date
)
...
...
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