Merge pull request #10571 from AdmiralCurtiss/ffmpeg-custom-pix-fmt

VideoCommon/FrameDump: Allow user to specify a pixel format.
This commit is contained in:
Mai M
2022-04-09 14:19:39 -04:00
committed by GitHub
5 changed files with 25 additions and 9 deletions

View File

@ -73,6 +73,7 @@ void VideoConfig::Refresh()
bUseFFV1 = Config::Get(Config::GFX_USE_FFV1);
sDumpFormat = Config::Get(Config::GFX_DUMP_FORMAT);
sDumpCodec = Config::Get(Config::GFX_DUMP_CODEC);
sDumpPixelFormat = Config::Get(Config::GFX_DUMP_PIXEL_FORMAT);
sDumpEncoder = Config::Get(Config::GFX_DUMP_ENCODER);
sDumpPath = Config::Get(Config::GFX_DUMP_PATH);
iBitrateKbps = Config::Get(Config::GFX_BITRATE_KBPS);