decoder/sndfile: support more tag types
This commit is contained in:
parent
2a96ce97ee
commit
3e19298c9e
1
NEWS
1
NEWS
|
@ -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
|
||||
- audiofile: support scanning remote files
|
||||
- audiofile: log libaudiofile errors
|
||||
- sndfile: support tags "comment", "album", "track", "genre"
|
||||
* encoder:
|
||||
- shine: new encoder plugin
|
||||
* threads:
|
||||
|
|
|
@ -228,7 +228,11 @@ static constexpr struct {
|
|||
} sndfile_tags[] = {
|
||||
{ SF_STR_TITLE, TAG_TITLE },
|
||||
{ SF_STR_ARTIST, TAG_ARTIST },
|
||||
{ SF_STR_COMMENT, TAG_COMMENT },
|
||||
{ SF_STR_DATE, TAG_DATE },
|
||||
{ SF_STR_ALBUM, TAG_ALBUM },
|
||||
{ SF_STR_TRACKNUMBER, TAG_TRACK },
|
||||
{ SF_STR_GENRE, TAG_GENRE },
|
||||
};
|
||||
|
||||
static bool
|
||||
|
|
Loading…
Reference in New Issue