diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-02-04 20:42:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 20:42:34 +0100 |
| commit | 09a0ba06c02b87dd799febc133c2cd24d94f44cb (patch) | |
| tree | a00b2db8f30ba9c87c0efe767d93892fc66cd2b4 /Source/Core/VideoCommon/FrameDump.cpp | |
| parent | ec20e4aa995092d77f1a0c3cc46ddf5f6632c11b (diff) | |
| parent | a9a163657ccfa888d2c4fcd6eb26ac5f0c994203 (diff) | |
Merge pull request #10417 from jordan-woyak/libavformat-59-build-fix
VideoCommon/FrameDump: Build fix for libavformat major version 59 and newer.
Diffstat (limited to 'Source/Core/VideoCommon/FrameDump.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/FrameDump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/FrameDump.cpp b/Source/Core/VideoCommon/FrameDump.cpp index 9a8e3b4e1f..e137170309 100644 --- a/Source/Core/VideoCommon/FrameDump.cpp +++ b/Source/Core/VideoCommon/FrameDump.cpp @@ -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); |
