Commit 3e19298c authored by Max Kellermann's avatar Max Kellermann

decoder/sndfile: support more tag types

parent 2a96ce97
...@@ -33,6 +33,7 @@ ver 0.19 (not yet released) ...@@ -33,6 +33,7 @@ ver 0.19 (not yet released)
- vorbis, flac, opus: honor DESCRIPTION= tag in Xiph-based files as a comment to the song - vorbis, flac, opus: honor DESCRIPTION= tag in Xiph-based files as a comment to the song
- audiofile: support scanning remote files - audiofile: support scanning remote files
- audiofile: log libaudiofile errors - audiofile: log libaudiofile errors
- sndfile: support tags "comment", "album", "track", "genre"
* encoder: * encoder:
- shine: new encoder plugin - shine: new encoder plugin
* threads: * threads:
......
...@@ -228,7 +228,11 @@ static constexpr struct { ...@@ -228,7 +228,11 @@ static constexpr struct {
} sndfile_tags[] = { } sndfile_tags[] = {
{ SF_STR_TITLE, TAG_TITLE }, { SF_STR_TITLE, TAG_TITLE },
{ SF_STR_ARTIST, TAG_ARTIST }, { SF_STR_ARTIST, TAG_ARTIST },
{ SF_STR_COMMENT, TAG_COMMENT },
{ SF_STR_DATE, TAG_DATE }, { SF_STR_DATE, TAG_DATE },
{ SF_STR_ALBUM, TAG_ALBUM },
{ SF_STR_TRACKNUMBER, TAG_TRACK },
{ SF_STR_GENRE, TAG_GENRE },
}; };
static bool static bool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment