decoder/ffmpeg: wider try/catch in ffmpeg_scan_stream()

This commit is contained in:
Max Kellermann 2019-03-13 00:27:03 +01:00
parent bce608cdbc
commit 0256bbbbaf
1 changed files with 4 additions and 8 deletions

View File

@ -678,23 +678,19 @@ FfmpegScanStream(AVFormatContext &format_context,
static bool
ffmpeg_scan_stream(InputStream &is, TagHandler &handler) noexcept
{
try {
AvioStream stream(nullptr, is);
if (!stream.Open())
return false;
AVFormatContext *f;
try {
f = FfmpegOpenInput(stream.io, is.GetURI(), nullptr);
} catch (...) {
return false;
}
AVFormatContext *f = FfmpegOpenInput(stream.io, is.GetURI(), nullptr);
AtScopeExit(&f) {
avformat_close_input(&f);
};
return FfmpegScanStream(*f, handler);
} catch (...) {
return false;
}
/**