Add ARTISTS= vorbis comment support to libtags

This is mostly just for flac handling, since we use libogg directly for
ogg containers, and flac+ogg are the only containers that use vorbis
comments.
This commit is contained in:
jacqueline
2024-12-30 15:14:50 +11:00
parent 4a422f4e54
commit 407d2da049
3 changed files with 4 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ enum
{
Tunknown = -1,
Tartist,
Tmultiartists,
Talbumartist,
Talbum,
Ttitle,
+1
View File
@@ -11,6 +11,7 @@ static const struct {
{"album", Talbum},
{"title", Ttitle},
{"artist", Tartist},
{"artists", Tmultiartists},
{"albumartist", Talbumartist},
{"tracknumber", Ttrack},
{"date", Tdate},