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
319c9699
Commit
319c9699
authored
May 21, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag/Type: add TAG_GROUPING
Map ID3 "TIT1" to this new core tag type. Closes
https://github.com/MusicPlayerDaemon/MPD/issues/563
parent
06a0a4a8
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
4 deletions
+12
-4
NEWS
NEWS
+2
-0
protocol.rst
doc/protocol.rst
+3
-0
Id3Scan.cxx
src/tag/Id3Scan.cxx
+2
-1
Id3Scan.hxx
src/tag/Id3Scan.hxx
+1
-1
Names.c
src/tag/Names.c
+2
-1
Type.h
src/tag/Type.h
+2
-1
No files found.
NEWS
View file @
319c9699
...
...
@@ -2,6 +2,8 @@ ver 0.22 (not yet released)
* protocol
- "findadd"/"searchadd"/"searchaddpl" support the "sort" and
"window" parameters
* tags
- new tag "Grouping" (for ID3 "TIT1")
* input
- ffmpeg: allow partial reads
* filter
...
...
doc/protocol.rst
View file @
319c9699
...
...
@@ -274,6 +274,9 @@ The following tags are supported by :program:`MPD`:
* **date**: the song's release date. This is usually a 4-digit year.
* **composer**: the artist who composed the song.
* **performer**: the artist who performed the song.
* **grouping**: "used if the sound belongs to a larger category of
sounds/music" (`from the IDv2.4.0 TIT1 description
<http://id3.org/id3v2.4.0-frames>`_).
* **comment**: a human-readable comment about this song. The exact meaning of this tag is not well-defined.
* **disc**: the decimal disc number in a multi-disc album.
* **label**: the name of the label or publisher.
...
...
src/tag/Id3Scan.cxx
View file @
319c9699
/*
* Copyright 2003-201
8
The Music Player Daemon Project
* Copyright 2003-201
9
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -317,6 +317,7 @@ scan_id3_tag(const struct id3_tag *tag, TagHandler &handler) noexcept
tag_id3_import_text
(
tag
,
"TPE3"
,
TAG_PERFORMER
,
handler
);
tag_id3_import_text
(
tag
,
"TPE4"
,
TAG_PERFORMER
,
handler
);
tag_id3_import_text
(
tag
,
"TIT1"
,
TAG_GROUPING
,
handler
);
tag_id3_import_comment
(
tag
,
ID3_FRAME_COMMENT
,
TAG_COMMENT
,
handler
);
tag_id3_import_text
(
tag
,
ID3_FRAME_DISC
,
TAG_DISC
,
...
...
src/tag/Id3Scan.hxx
View file @
319c9699
/*
* Copyright 2003-201
8
The Music Player Daemon Project
* Copyright 2003-201
9
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
src/tag/Names.c
View file @
319c9699
/*
* Copyright 2003-201
8
The Music Player Daemon Project
* Copyright 2003-201
9
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -34,6 +34,7 @@ const char *const tag_item_names[TAG_NUM_OF_ITEM_TYPES] = {
[
TAG_ORIGINAL_DATE
]
=
"OriginalDate"
,
[
TAG_COMPOSER
]
=
"Composer"
,
[
TAG_PERFORMER
]
=
"Performer"
,
[
TAG_GROUPING
]
=
"Grouping"
,
[
TAG_COMMENT
]
=
"Comment"
,
[
TAG_DISC
]
=
"Disc"
,
[
TAG_LABEL
]
=
"Label"
,
...
...
src/tag/Type.h
View file @
319c9699
/*
* Copyright 2003-201
8
The Music Player Daemon Project
* Copyright 2003-201
9
The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
...
...
@@ -49,6 +49,7 @@ enum TagType
TAG_ORIGINAL_DATE
,
TAG_COMPOSER
,
TAG_PERFORMER
,
TAG_GROUPING
,
TAG_COMMENT
,
TAG_DISC
,
TAG_LABEL
,
...
...
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