Commit ea639269 authored by Max Kellermann's avatar Max Kellermann

decoder/wildmidi: throw PluginUnavailable on WildMidi_Init() error

parent 0abaa3ec
ver 0.21.11 (not yet released)
* decoder
- wildmidi: log error if library initialization fails
* output
- alsa, osx: fix distortions with DSD_U32 and DoP on 32 bit CPUs
* protocol
......
......@@ -21,6 +21,7 @@
#include "../DecoderAPI.hxx"
#include "tag/Handler.hxx"
#include "util/Domain.hxx"
#include "util/ScopeExit.hxx"
#include "util/StringFormat.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/FileSystem.hxx"
......@@ -49,8 +50,14 @@ wildmidi_init(const ConfigBlock &block)
utf8.c_str()));
}
return WildMidi_Init(path.c_str(), wildmidi_audio_format.sample_rate,
0) == 0;
WildMidi_ClearError();
AtScopeExit() { WildMidi_ClearError(); };
if (WildMidi_Init(path.c_str(), wildmidi_audio_format.sample_rate,
0) != 0)
throw PluginUnavailable(WildMidi_GetError());
return true;
}
static void
......
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