diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp index 405af72f4a..4392182a22 100644 --- a/Source/Core/Core/State.cpp +++ b/Source/Core/Core/State.cpp @@ -42,7 +42,7 @@ #include "Core/PowerPC/PowerPC.h" #include "Core/System.h" -#include "VideoCommon/FrameDump.h" +#include "VideoCommon/FrameDumpFFMpeg.h" #include "VideoCommon/OnScreenDisplay.h" #include "VideoCommon/VideoBackendBase.h" diff --git a/Source/Core/DolphinLib.props b/Source/Core/DolphinLib.props index 69e8f2873e..80daf63a32 100644 --- a/Source/Core/DolphinLib.props +++ b/Source/Core/DolphinLib.props @@ -638,7 +638,7 @@ - + @@ -1234,7 +1234,7 @@ - + diff --git a/Source/Core/VideoCommon/CMakeLists.txt b/Source/Core/VideoCommon/CMakeLists.txt index 1cc23ba7aa..20b3257082 100644 --- a/Source/Core/VideoCommon/CMakeLists.txt +++ b/Source/Core/VideoCommon/CMakeLists.txt @@ -36,6 +36,7 @@ add_library(videocommon FramebufferShaderGen.h FrameDumper.cpp FrameDumper.h + FrameDumpFFMpeg.h FreeLookCamera.cpp FreeLookCamera.h GeometryShaderGen.cpp @@ -203,8 +204,7 @@ endif() if(FFmpeg_FOUND) target_sources(videocommon PRIVATE - FrameDump.cpp - FrameDump.h + FrameDumpFFMpeg.cpp ) target_link_libraries(videocommon PRIVATE FFmpeg::avcodec diff --git a/Source/Core/VideoCommon/FrameDump.cpp b/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp similarity index 99% rename from Source/Core/VideoCommon/FrameDump.cpp rename to Source/Core/VideoCommon/FrameDumpFFMpeg.cpp index c5edffc04e..09fdf4dbac 100644 --- a/Source/Core/VideoCommon/FrameDump.cpp +++ b/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp @@ -1,7 +1,7 @@ // Copyright 2009 Dolphin Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include "VideoCommon/FrameDump.h" +#include "VideoCommon/FrameDumpFFMpeg.h" #if defined(__FreeBSD__) #define __STDC_CONSTANT_MACROS 1 diff --git a/Source/Core/VideoCommon/FrameDump.h b/Source/Core/VideoCommon/FrameDumpFFMpeg.h similarity index 100% rename from Source/Core/VideoCommon/FrameDump.h rename to Source/Core/VideoCommon/FrameDumpFFMpeg.h diff --git a/Source/Core/VideoCommon/FrameDumper.h b/Source/Core/VideoCommon/FrameDumper.h index 2051346ef9..f2c53a28b9 100644 --- a/Source/Core/VideoCommon/FrameDumper.h +++ b/Source/Core/VideoCommon/FrameDumper.h @@ -9,7 +9,7 @@ #include "Common/MathUtil.h" #include "Common/Thread.h" -#include "VideoCommon/FrameDump.h" +#include "VideoCommon/FrameDumpFFMpeg.h" class AbstractStagingTexture; class AbstractTexture;