Fix loading dummy image in the sync encoding path

This commit is contained in:
Cameron Gutman 2023-10-03 18:09:00 -05:00
parent 3246428b7d
commit bee9215805

View File

@ -1880,6 +1880,12 @@ namespace video {
return std::nullopt;
}
// Load the initial image to prepare for encoding
if (session->convert(img)) {
BOOST_LOG(error) << "Could not convert initial image"sv;
return std::nullopt;
}
encode_session.session = std::move(session);
return encode_session;