Song: Added WAV to list of supported filetypes

This commit is contained in:
Robert Gingras 2024-04-17 11:05:17 -04:00 committed by Jonas Kvinge
parent d03d3622aa
commit 8d7e14f21d
1 changed files with 6 additions and 3 deletions

View File

@ -570,7 +570,8 @@ bool Song::write_tags_supported() const {
d->filetype_ == FileType::TrueAudio ||
d->filetype_ == FileType::APE ||
d->filetype_ == FileType::DSF ||
d->filetype_ == FileType::DSDIFF;
d->filetype_ == FileType::DSDIFF ||
d->filetype_ == FileType::WAV;
}
@ -585,7 +586,8 @@ bool Song::additional_tags_supported() const {
d->filetype_ == FileType::MPEG ||
d->filetype_ == FileType::MP4 ||
d->filetype_ == FileType::MPC ||
d->filetype_ == FileType::APE;
d->filetype_ == FileType::APE ||
d->filetype_ == FileType::WAV;
}
@ -607,7 +609,8 @@ bool Song::performer_supported() const {
d->filetype_ == FileType::OggSpeex ||
d->filetype_ == FileType::MPEG ||
d->filetype_ == FileType::MPC ||
d->filetype_ == FileType::APE;
d->filetype_ == FileType::APE ||
d->filetype_ == FileType::WAV;
}