mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-01 18:21:31 -04:00
A little more wma metadata
This commit is contained in:
parent
2b6878495c
commit
b21d1340c9
@ -413,6 +413,14 @@ int wma_parse_extended_content_description(int fd,int size, MP3FILE *pmp3) {
|
|||||||
MAYBEFREE(pmp3->artist);
|
MAYBEFREE(pmp3->artist);
|
||||||
pmp3->artist = descriptor_byte_value;
|
pmp3->artist = descriptor_byte_value;
|
||||||
descriptor_byte_value = NULL;
|
descriptor_byte_value = NULL;
|
||||||
|
} else if(!strcasecmp(descriptor_name,"wm/contengroupdescription")==0) {
|
||||||
|
MAYBEFREE(pmp3->grouping);
|
||||||
|
pmp3->grouping = descriptor_byte_value;
|
||||||
|
descriptor_byte_value = NULL;
|
||||||
|
} else if(!strcasecmp(descriptor_name,"comment")==0) {
|
||||||
|
MAYBEFREE(pmp3->comment);
|
||||||
|
pmp3->comment = descriptor_byte_value;
|
||||||
|
descriptor_byte_value = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* cleanup - done with this round */
|
/* cleanup - done with this round */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user