Commit de0ee264 authored by Max Kellermann's avatar Max Kellermann

decoder/sndfile: call TagHandler::OnAudioFormat()

parent 45cccbce
......@@ -286,6 +286,11 @@ sndfile_scan_stream(InputStream &is, TagHandler &handler) noexcept
return false;
}
try {
handler.OnAudioFormat(CheckAudioFormat(info));
} catch (...) {
}
handler.OnDuration(sndfile_duration(info));
for (auto i : sndfile_tags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment