decoder/ffmpeg: check for DST codec

Closes https://github.com/MusicPlayerDaemon/MPD/issues/1756
This commit is contained in:
Max Kellermann 2023-03-12 19:36:32 +01:00
parent c53ee41855
commit 89d66b6100
1 changed files with 2 additions and 0 deletions

View File

@ -712,6 +712,8 @@ ffmpeg_suffixes() noexcept
/* FFmpeg was compiled with DSD support */
suffixes.emplace("dff");
suffixes.emplace("dsf");
} else if (StringIsEqual(codec->name, "dst")) {
suffixes.emplace("dst");
}
}