Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
1892d29b
Commit
1892d29b
authored
Feb 11, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/{vorbis,flac}: use the tag_table library
parent
9e5a49b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
flac_metadata.c
src/decoder/flac_metadata.c
+10
-11
vorbis_comments.c
src/decoder/vorbis_comments.c
+11
-10
No files found.
src/decoder/flac_metadata.c
View file @
1892d29b
...
...
@@ -21,6 +21,7 @@
#include "flac_metadata.h"
#include "replay_gain_info.h"
#include "tag.h"
#include "tag_table.h"
#include <glib.h>
...
...
@@ -180,10 +181,12 @@ flac_copy_comment(struct tag *tag,
return
false
;
}
/* tracknumber is used in VCs, MPD uses "track" ..., all the other
* tag names match */
static
const
char
*
VORBIS_COMMENT_TRACK_KEY
=
"tracknumber"
;
static
const
char
*
VORBIS_COMMENT_DISC_KEY
=
"discnumber"
;
static
const
struct
tag_table
flac_tags
[]
=
{
{
"tracknumber"
,
TAG_TRACK
},
{
"discnumber"
,
TAG_DISC
},
{
"album artist"
,
TAG_ALBUM_ARTIST
},
{
NULL
,
TAG_NUM_OF_ITEM_TYPES
}
};
static
void
flac_parse_comment
(
struct
tag
*
tag
,
const
char
*
char_tnum
,
...
...
@@ -191,13 +194,9 @@ flac_parse_comment(struct tag *tag, const char *char_tnum,
{
assert
(
tag
!=
NULL
);
if
(
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_TRACK_KEY
,
TAG_TRACK
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
VORBIS_COMMENT_DISC_KEY
,
TAG_DISC
,
char_tnum
)
||
flac_copy_comment
(
tag
,
entry
,
"album artist"
,
TAG_ALBUM_ARTIST
,
char_tnum
))
return
;
for
(
const
struct
tag_table
*
i
=
flac_tags
;
i
->
name
!=
NULL
;
++
i
)
if
(
flac_copy_comment
(
tag
,
entry
,
i
->
name
,
i
->
type
,
char_tnum
))
return
;
for
(
unsigned
i
=
0
;
i
<
TAG_NUM_OF_ITEM_TYPES
;
++
i
)
if
(
flac_copy_comment
(
tag
,
entry
,
...
...
src/decoder/vorbis_comments.c
View file @
1892d29b
...
...
@@ -20,6 +20,7 @@
#include "config.h"
#include "vorbis_comments.h"
#include "tag.h"
#include "tag_table.h"
#include "replay_gain_info.h"
#include <glib.h>
...
...
@@ -73,9 +74,6 @@ vorbis_comments_to_replay_gain(struct replay_gain_info *rgi, char **comments)
return
found
;
}
static
const
char
*
VORBIS_COMMENT_TRACK_KEY
=
"tracknumber"
;
static
const
char
*
VORBIS_COMMENT_DISC_KEY
=
"discnumber"
;
/**
* Check if the comment's name equals the passed name, and if so, copy
* the comment value into the tag.
...
...
@@ -95,18 +93,21 @@ vorbis_copy_comment(struct tag *tag, const char *comment,
return
false
;
}
static
const
struct
tag_table
vorbis_tags
[]
=
{
{
"tracknumber"
,
TAG_TRACK
},
{
"discnumber"
,
TAG_DISC
},
{
"album artist"
,
TAG_ALBUM_ARTIST
},
{
NULL
,
TAG_NUM_OF_ITEM_TYPES
}
};
static
void
vorbis_parse_comment
(
struct
tag
*
tag
,
const
char
*
comment
)
{
assert
(
tag
!=
NULL
);
if
(
vorbis_copy_comment
(
tag
,
comment
,
VORBIS_COMMENT_TRACK_KEY
,
TAG_TRACK
)
||
vorbis_copy_comment
(
tag
,
comment
,
VORBIS_COMMENT_DISC_KEY
,
TAG_DISC
)
||
vorbis_copy_comment
(
tag
,
comment
,
"album artist"
,
TAG_ALBUM_ARTIST
))
return
;
for
(
const
struct
tag_table
*
i
=
vorbis_tags
;
i
->
name
!=
NULL
;
++
i
)
if
(
vorbis_copy_comment
(
tag
,
comment
,
i
->
name
,
i
->
type
))
return
;
for
(
unsigned
i
=
0
;
i
<
TAG_NUM_OF_ITEM_TYPES
;
++
i
)
if
(
vorbis_copy_comment
(
tag
,
comment
,
...
...
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