New upstream version 26.1.0+dfsg1

This commit is contained in:
Sebastian Ramacher 2020-12-22 18:32:50 +01:00
parent 040dcc3fc2
commit 013818c4af
594 changed files with 19576 additions and 4478 deletions

View file

@ -332,6 +332,8 @@ static void vlcs_get_metadata(void *data, calldata_t *cd)
VLC_META(media, cd, data_id, "album_artist", libvlc_meta_AlbumArtist)
VLC_META(media, cd, data_id, "disc_number", libvlc_meta_DiscNumber)
VLC_META(media, cd, data_id, "disc_total", libvlc_meta_DiscTotal)
libvlc_media_release_(media);
#undef VLC_META
}
@ -554,7 +556,7 @@ static bool valid_extension(const char *ext)
else
dstr_copy(&test, b);
if (dstr_cmp(&test, ext) == 0) {
if (dstr_cmpi(&test, ext) == 0) {
valid = true;
break;
}