diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-01-04 22:26:36 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-04 22:26:36 -0500 |
| commit | 6b686be5f167d0b6ce7181d8d15a88bf9273e372 (patch) | |
| tree | b66acadfc2dacd8a63c532f5de0ede7eeccff99b /Source/Core/VideoCommon | |
| parent | 9b3b6bea9d088c52cfaa455bb8f2702d13f6002d (diff) | |
| parent | 3d248d000f9fac75c141854d9b3789f83183912f (diff) | |
Merge pull request #13233 from TryTwo/PR_Codec
AdvancedWidget: Replace FFV1 codec with Ut Video
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/FrameDumpFFMpeg.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp b/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp index 760ae6f7e0..d698af8cd5 100644 --- a/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp +++ b/Source/Core/VideoCommon/FrameDumpFFMpeg.cpp @@ -217,7 +217,7 @@ bool FFMpegFrameDump::CreateVideoFile() return false; } - const std::string& codec_name = g_Config.bUseFFV1 ? "ffv1" : g_Config.sDumpCodec; + const std::string& codec_name = g_Config.bUseLossless ? "utvideo" : g_Config.sDumpCodec; AVCodecID codec_id = output_format->video_codec; diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 9c73608b22..cc62d33959 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -122,7 +122,7 @@ void VideoConfig::Refresh() bDumpEFBTarget = Config::Get(Config::GFX_DUMP_EFB_TARGET); bDumpXFBTarget = Config::Get(Config::GFX_DUMP_XFB_TARGET); bDumpFramesAsImages = Config::Get(Config::GFX_DUMP_FRAMES_AS_IMAGES); - bUseFFV1 = Config::Get(Config::GFX_USE_FFV1); + bUseLossless = Config::Get(Config::GFX_USE_LOSSLESS); sDumpFormat = Config::Get(Config::GFX_DUMP_FORMAT); sDumpCodec = Config::Get(Config::GFX_DUMP_CODEC); sDumpPixelFormat = Config::Get(Config::GFX_DUMP_PIXEL_FORMAT); diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 5cce23bfd2..d2f0d50cbd 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -193,7 +193,7 @@ struct VideoConfig final bool bDumpEFBTarget = false; bool bDumpXFBTarget = false; bool bDumpFramesAsImages = false; - bool bUseFFV1 = false; + bool bUseLossless = false; std::string sDumpCodec; std::string sDumpPixelFormat; std::string sDumpEncoder; |
