diff --git a/src/libs/audio/impl/taglib/Utils.cpp b/src/libs/audio/impl/taglib/Utils.cpp index c550c0d0..aebdaf05 100644 --- a/src/libs/audio/impl/taglib/Utils.cpp +++ b/src/libs/audio/impl/taglib/Utils.cpp @@ -54,12 +54,35 @@ namespace lms::audio::taglib::utils std::span getSupportedExtensions() { static const std::vector supportedExtensions{ - ".mp3", ".mp2", ".aac", ".ogg", ".oga", ".flac", ".spx", ".opus", - ".mpc", ".wv", ".ape", ".tta", ".m4a", ".m4r", ".m4b", ".m4p", - ".3g2", ".m4v", ".wma", ".asf", ".aif", ".aiff", ".afc", ".aifc", + ".mp3", + ".mp2", + ".ogg", + ".oga", + ".flac", + ".spx", + ".opus", + ".mpc", + ".wv", + ".ape", + ".tta", + ".m4a", + ".m4r", + ".m4b", + ".m4p", + ".3g2", + ".m4v", + ".wma", + ".asf", + ".aif", + ".aiff", + ".afc", + ".aifc", ".wav", +#if LMS_TAGLIB_HAS_ADTS + ".aac", +#endif #if LMS_TAGLIB_HAS_DSF - ".dsf" + ".dsf", #endif };