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
4324150b
Commit
4324150b
authored
Apr 30, 2006
by
Qball Cow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Disc # metadata item based on bug 571 (added id3v2 support)
git-svn-id:
https://svn.musicpd.org/mpd/trunk@4131
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
8aca530b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
6 deletions
+26
-6
_flac_common.c
src/inputPlugins/_flac_common.c
+7
-2
mp4_plugin.c
src/inputPlugins/mp4_plugin.c
+4
-0
oggvorbis_plugin.c
src/inputPlugins/oggvorbis_plugin.c
+7
-2
tag.c
src/tag.c
+6
-1
tag.h
src/tag.h
+2
-1
No files found.
src/inputPlugins/_flac_common.c
View file @
4324150b
...
...
@@ -106,14 +106,19 @@ static void flacParseReplayGain(const FLAC__StreamMetadata *block,
/* 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
unsigned
int
commentMatchesAddToTag
(
const
FLAC__StreamMetadata_VorbisComment_Entry
*
entry
,
unsigned
int
itemType
,
MpdTag
**
tag
)
{
const
char
*
str
=
(
itemType
==
TAG_ITEM_TRACK
)
?
VORBIS_COMMENT_TRACK_KEY
:
mpdTagItemKeys
[
itemType
];
const
char
*
str
;
switch
(
itemType
)
{
case
TAG_ITEM_TRACK
:
str
=
VORBIS_COMMENT_TRACK_KEY
;
break
;
case
TAG_ITEM_DISC
:
str
=
VORBIS_COMMENT_DISC_KEY
;
break
;
default:
str
=
mpdTagItemKeys
[
itemType
];
}
size_t
slen
=
strlen
(
str
);
int
vlen
=
entry
->
length
-
slen
-
1
;
...
...
src/inputPlugins/mp4_plugin.c
View file @
4324150b
...
...
@@ -385,6 +385,10 @@ MpdTag * mp4DataDup(char * file, int * mp4MetadataFound) {
addItemToMpdTag
(
ret
,
TAG_ITEM_TRACK
,
value
);
*
mp4MetadataFound
=
1
;
}
else
if
(
0
==
strcasecmp
(
"disc"
,
item
))
{
/* Is that the correct id? */
addItemToMpdTag
(
ret
,
TAG_ITEM_DISC
,
value
);
*
mp4MetadataFound
=
1
;
}
else
if
(
0
==
strcasecmp
(
"genre"
,
item
))
{
addItemToMpdTag
(
ret
,
TAG_ITEM_GENRE
,
value
);
*
mp4MetadataFound
=
1
;
...
...
src/inputPlugins/oggvorbis_plugin.c
View file @
4324150b
...
...
@@ -155,12 +155,17 @@ void ogg_getReplayGainInfo(char ** comments, ReplayGainInfo ** infoPtr) {
}
static
const
char
*
VORBIS_COMMENT_TRACK_KEY
=
"tracknumber"
;
static
const
char
*
VORBIS_COMMENT_DISC_KEY
=
"discnumber"
;
static
inline
unsigned
int
ogg_parseCommentAddToTag
(
char
*
comment
,
unsigned
int
itemType
,
MpdTag
**
tag
)
{
const
char
*
needle
=
(
itemType
==
TAG_ITEM_TRACK
)
?
VORBIS_COMMENT_TRACK_KEY
:
mpdTagItemKeys
[
itemType
];
const
char
*
needle
;
switch
(
itemType
)
{
case
TAG_ITEM_TRACK
:
needle
=
VORBIS_COMMENT_TRACK_KEY
;
break
;
case
TAG_ITEM_DISC
:
needle
=
VORBIS_COMMENT_DISC_KEY
;
break
;
default:
needle
=
mpdTagItemKeys
[
itemType
];
}
unsigned
int
len
=
strlen
(
needle
);
if
(
strncasecmp
(
comment
,
needle
,
len
)
==
0
&&
*
(
comment
+
len
)
==
'='
)
{
...
...
src/tag.c
View file @
4324150b
...
...
@@ -46,6 +46,9 @@
#ifndef ID3_FRAME_COMPOSER
#define ID3_FRAME_COMPOSER "TCOM"
#endif
#ifndef ID3_FRAME_DISC
#define ID3_FRAME_DISC "TPOS"
#endif
#endif
char
*
mpdTagItemKeys
[
TAG_NUM_OF_ITEM_TYPES
]
=
...
...
@@ -59,7 +62,8 @@ char * mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] =
"Date"
,
"Composer"
,
"Performer"
,
"Comment"
"Comment"
,
"Disc"
};
static
mpd_sint8
ignoreTagItems
[
TAG_NUM_OF_ITEM_TYPES
];
...
...
@@ -171,6 +175,7 @@ MpdTag * parseId3Tag(struct id3_tag * tag) {
ret
=
getID3Info
(
tag
,
ID3_FRAME_GENRE
,
TAG_ITEM_GENRE
,
ret
);
ret
=
getID3Info
(
tag
,
ID3_FRAME_COMPOSER
,
TAG_ITEM_COMPOSER
,
ret
);
ret
=
getID3Info
(
tag
,
ID3_FRAME_COMMENT
,
TAG_ITEM_COMMENT
,
ret
);
ret
=
getID3Info
(
tag
,
ID3_FRAME_DISC
,
TAG_ITEM_DISC
,
ret
);
return
ret
;
}
...
...
src/tag.h
View file @
4324150b
...
...
@@ -44,8 +44,9 @@
#define TAG_ITEM_COMPOSER 7
#define TAG_ITEM_PERFORMER 8
#define TAG_ITEM_COMMENT 9
#define TAG_ITEM_DISC 10
#define TAG_NUM_OF_ITEM_TYPES 1
0
#define TAG_NUM_OF_ITEM_TYPES 1
1
extern
char
*
mpdTagItemKeys
[];
...
...
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