mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
Rename FrameDump.{cpp,h} to FrameDumpFFMpeg.{cpp,h}
The name kind of conflicts with a new FrameDumper class
This commit is contained in:
parent
0d4537d60f
commit
e57eb04ed3
@ -42,7 +42,7 @@
|
|||||||
#include "Core/PowerPC/PowerPC.h"
|
#include "Core/PowerPC/PowerPC.h"
|
||||||
#include "Core/System.h"
|
#include "Core/System.h"
|
||||||
|
|
||||||
#include "VideoCommon/FrameDump.h"
|
#include "VideoCommon/FrameDumpFFMpeg.h"
|
||||||
#include "VideoCommon/OnScreenDisplay.h"
|
#include "VideoCommon/OnScreenDisplay.h"
|
||||||
#include "VideoCommon/VideoBackendBase.h"
|
#include "VideoCommon/VideoBackendBase.h"
|
||||||
|
|
||||||
|
@ -638,7 +638,7 @@
|
|||||||
<ClInclude Include="VideoCommon\Fifo.h" />
|
<ClInclude Include="VideoCommon\Fifo.h" />
|
||||||
<ClInclude Include="VideoCommon\FramebufferManager.h" />
|
<ClInclude Include="VideoCommon\FramebufferManager.h" />
|
||||||
<ClInclude Include="VideoCommon\FramebufferShaderGen.h" />
|
<ClInclude Include="VideoCommon\FramebufferShaderGen.h" />
|
||||||
<ClInclude Include="VideoCommon\FrameDump.h" />
|
<ClInclude Include="VideoCommon\FrameDumpFFMpeg.h" />
|
||||||
<ClInclude Include="VideoCommon\FrameDumper.h" />
|
<ClInclude Include="VideoCommon\FrameDumper.h" />
|
||||||
<ClInclude Include="VideoCommon\FreeLookCamera.h" />
|
<ClInclude Include="VideoCommon\FreeLookCamera.h" />
|
||||||
<ClInclude Include="VideoCommon\GeometryShaderGen.h" />
|
<ClInclude Include="VideoCommon\GeometryShaderGen.h" />
|
||||||
@ -1234,7 +1234,7 @@
|
|||||||
<ClCompile Include="VideoCommon\Fifo.cpp" />
|
<ClCompile Include="VideoCommon\Fifo.cpp" />
|
||||||
<ClCompile Include="VideoCommon\FramebufferManager.cpp" />
|
<ClCompile Include="VideoCommon\FramebufferManager.cpp" />
|
||||||
<ClCompile Include="VideoCommon\FramebufferShaderGen.cpp" />
|
<ClCompile Include="VideoCommon\FramebufferShaderGen.cpp" />
|
||||||
<ClCompile Include="VideoCommon\FrameDump.cpp" />
|
<ClCompile Include="VideoCommon\FrameDumpFFMpeg.cpp" />
|
||||||
<ClCompile Include="VideoCommon\FrameDumper.cpp" />
|
<ClCompile Include="VideoCommon\FrameDumper.cpp" />
|
||||||
<ClCompile Include="VideoCommon\FreeLookCamera.cpp" />
|
<ClCompile Include="VideoCommon\FreeLookCamera.cpp" />
|
||||||
<ClCompile Include="VideoCommon\GeometryShaderGen.cpp" />
|
<ClCompile Include="VideoCommon\GeometryShaderGen.cpp" />
|
||||||
|
@ -36,6 +36,7 @@ add_library(videocommon
|
|||||||
FramebufferShaderGen.h
|
FramebufferShaderGen.h
|
||||||
FrameDumper.cpp
|
FrameDumper.cpp
|
||||||
FrameDumper.h
|
FrameDumper.h
|
||||||
|
FrameDumpFFMpeg.h
|
||||||
FreeLookCamera.cpp
|
FreeLookCamera.cpp
|
||||||
FreeLookCamera.h
|
FreeLookCamera.h
|
||||||
GeometryShaderGen.cpp
|
GeometryShaderGen.cpp
|
||||||
@ -203,8 +204,7 @@ endif()
|
|||||||
|
|
||||||
if(FFmpeg_FOUND)
|
if(FFmpeg_FOUND)
|
||||||
target_sources(videocommon PRIVATE
|
target_sources(videocommon PRIVATE
|
||||||
FrameDump.cpp
|
FrameDumpFFMpeg.cpp
|
||||||
FrameDump.h
|
|
||||||
)
|
)
|
||||||
target_link_libraries(videocommon PRIVATE
|
target_link_libraries(videocommon PRIVATE
|
||||||
FFmpeg::avcodec
|
FFmpeg::avcodec
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// Copyright 2009 Dolphin Emulator Project
|
// Copyright 2009 Dolphin Emulator Project
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
|
||||||
#include "VideoCommon/FrameDump.h"
|
#include "VideoCommon/FrameDumpFFMpeg.h"
|
||||||
|
|
||||||
#if defined(__FreeBSD__)
|
#if defined(__FreeBSD__)
|
||||||
#define __STDC_CONSTANT_MACROS 1
|
#define __STDC_CONSTANT_MACROS 1
|
@ -9,7 +9,7 @@
|
|||||||
#include "Common/MathUtil.h"
|
#include "Common/MathUtil.h"
|
||||||
#include "Common/Thread.h"
|
#include "Common/Thread.h"
|
||||||
|
|
||||||
#include "VideoCommon/FrameDump.h"
|
#include "VideoCommon/FrameDumpFFMpeg.h"
|
||||||
|
|
||||||
class AbstractStagingTexture;
|
class AbstractStagingTexture;
|
||||||
class AbstractTexture;
|
class AbstractTexture;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user