1
0
Fork 0

vapoursynth: Properly pass through script errors

This commit is contained in:
arch1t3cht 2022-10-31 23:03:37 +01:00
parent 40a9344d44
commit a5aa4eca29
1 changed files with 3 additions and 1 deletions

View File

@ -84,7 +84,9 @@ VapoursynthAudioProvider::VapoursynthAudioProvider(agi::fs::path const& filename
num_samples = vi->numSamples;
}
catch (VapoursynthError const& err) {
throw agi::AudioProviderError(agi::format("Vapoursynth error: %s", err.GetMessage()));
// Unlike the video provider manager, the audio provider factory catches AudioProviderErrors and picks whichever source doesn't throw one.
// So just rethrow the Error here with an extra label so the user will see the error message and know the audio wasn't loaded with VS
throw VapoursynthError(agi::format("Vapoursynth error: %s", err.GetMessage()));
}
template<typename T>