diff --git a/Source/Core/Core/State.cpp b/Source/Core/Core/State.cpp
index 0b3b530275..a3fffacea6 100644
--- a/Source/Core/Core/State.cpp
+++ b/Source/Core/Core/State.cpp
@@ -191,7 +191,7 @@ static std::string DoState(PointerWrap& p)
Gecko::DoState(p);
p.DoMarker("Gecko");
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
AVIDump::DoState();
#endif
diff --git a/Source/Core/DolphinWX/VideoConfigDiag.cpp b/Source/Core/DolphinWX/VideoConfigDiag.cpp
index 1b8063e720..cafff392e1 100644
--- a/Source/Core/DolphinWX/VideoConfigDiag.cpp
+++ b/Source/Core/DolphinWX/VideoConfigDiag.cpp
@@ -239,7 +239,7 @@ static wxString internal_resolution_frame_dumping_desc = wxTRANSLATE(
"the size of the window it is displayed within. If the aspect ratio is widescreen, the output "
"image will be scaled horizontally to preserve the vertical resolution.\n\nIf unsure, leave "
"this unchecked.");
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
static wxString use_ffv1_desc =
wxTRANSLATE("Encode frame dumps using the FFV1 codec.\n\nIf unsure, leave this unchecked.");
#endif
@@ -894,7 +894,7 @@ VideoConfigDiag::VideoConfigDiag(wxWindow* parent, const std::string& title)
wxGetTranslation(dump_efb_desc), vconfig.bDumpEFBTarget));
szr_utility->Add(CreateCheckBox(page_advanced, _("Free Look"),
wxGetTranslation(free_look_desc), vconfig.bFreeLook));
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
szr_utility->Add(CreateCheckBox(page_advanced, _("Frame Dumps Use FFV1"),
wxGetTranslation(use_ffv1_desc), vconfig.bUseFFV1));
#endif
diff --git a/Source/Core/VideoCommon/AVIDump.h b/Source/Core/VideoCommon/AVIDump.h
index 521f0d792b..065a5d63d0 100644
--- a/Source/Core/VideoCommon/AVIDump.h
+++ b/Source/Core/VideoCommon/AVIDump.h
@@ -27,7 +27,7 @@ public:
static void Stop();
static void DoState();
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
static Frame FetchState(u64 ticks);
#else
static Frame FetchState(u64 ticks) { return {}; }
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index baa8b73b37..42f07ef403 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -774,7 +774,7 @@ bool Renderer::IsFrameDumping()
if (m_screenshot_request.IsSet())
return true;
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
if (SConfig::GetInstance().m_DumpFrames)
return true;
#endif
@@ -828,7 +828,7 @@ void Renderer::RunFrameDumps()
bool frame_dump_started = false;
// If Dolphin was compiled without libav, we only support dumping to images.
-#if !defined(HAVE_FFMPEG) && !defined(_WIN32)
+#if !defined(HAVE_FFMPEG)
if (dump_to_avi)
{
WARN_LOG(VIDEO, "AVI frame dump requested, but Dolphin was compiled without libav. "
@@ -900,7 +900,7 @@ void Renderer::RunFrameDumps()
}
}
-#if defined(HAVE_FFMPEG) || defined(_WIN32)
+#if defined(HAVE_FFMPEG)
bool Renderer::StartFrameDumpToAVI(const FrameDumpConfig& config)
{
@@ -932,7 +932,7 @@ void Renderer::StopFrameDumpToAVI()
{
}
-#endif // defined(HAVE_FFMPEG) || defined(WIN32)
+#endif // defined(HAVE_FFMPEG)
std::string Renderer::GetFrameDumpNextImageFileName() const
{
diff --git a/Source/VSProps/Base.props b/Source/VSProps/Base.props
index 7e791f588e..2362aeaa85 100644
--- a/Source/VSProps/Base.props
+++ b/Source/VSProps/Base.props
@@ -50,6 +50,7 @@
$(ExternalsDir)wxWidgets3\Include;%(AdditionalIncludeDirectories)
$(ExternalsDir)xxhash;%(AdditionalIncludeDirectories)
$(ExternalsDir)zlib;%(AdditionalIncludeDirectories)
+ HAVE_FFMPEG;%(PreprocessorDefinitions)
_CRT_SECURE_NO_WARNINGS;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions)
USE_UPNP;USE_USBDK;__LIBUSB__;%(PreprocessorDefinitions)
PSAPI_VERSION=1;_M_X86=1;%(PreprocessorDefinitions)