Handle framedump path not existing

This commit is contained in:
Lucas Kent 2018-01-17 23:10:04 +11:00
parent 2a43f41ace
commit 6c7e6016fb
1 changed files with 2 additions and 0 deletions

View File

@ -130,6 +130,8 @@ bool AVIDump::CreateVideoFile()
if (s_dump_path.empty())
return false;
File::CreateFullPath(s_dump_path);
AVOutputFormat* output_format = av_guess_format(s_format.c_str(), s_dump_path.c_str(), nullptr);
if (!output_format)
{