Skip to content
Permalink
Browse files
Merge pull request #10417 from jordan-woyak/libavformat-59-build-fix
VideoCommon/FrameDump: Build fix for libavformat major version 59 and newer.
  • Loading branch information
AdmiralCurtiss committed Feb 4, 2022
2 parents ec20e4a + a9a1636 commit 09a0ba0
Showing 1 changed file with 1 addition and 1 deletion.
@@ -154,7 +154,7 @@ bool FrameDump::CreateVideoFile()

File::CreateFullPath(dump_path);

AVOutputFormat* const output_format = av_guess_format(format.c_str(), dump_path.c_str(), nullptr);
auto* const output_format = av_guess_format(format.c_str(), dump_path.c_str(), nullptr);
if (!output_format)
{
ERROR_LOG_FMT(FRAMEDUMP, "Invalid format {}", format);

0 comments on commit 09a0ba0

Please sign in to comment.