mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Merge pull request #4958 from RisingFog/avidump_bitrate
Add configurable video dump bitrate to INI
This commit is contained in:
commit
ed6a46a193
3 changed files with 4 additions and 1 deletions
|
@ -75,6 +75,7 @@ void VideoConfig::Load(const std::string& ini_file)
|
|||
settings->Get("DumpFramesAsImages", &bDumpFramesAsImages, false);
|
||||
settings->Get("FreeLook", &bFreeLook, false);
|
||||
settings->Get("UseFFV1", &bUseFFV1, false);
|
||||
settings->Get("BitrateKbps", &iBitrateKbps, 2500);
|
||||
settings->Get("InternalResolutionFrameDumps", &bInternalResolutionFrameDumps, false);
|
||||
settings->Get("EnablePixelLighting", &bEnablePixelLighting, false);
|
||||
settings->Get("FastDepthCalc", &bFastDepthCalc, true);
|
||||
|
@ -294,6 +295,7 @@ void VideoConfig::Save(const std::string& ini_file)
|
|||
settings->Set("DumpFramesAsImages", bDumpFramesAsImages);
|
||||
settings->Set("FreeLook", bFreeLook);
|
||||
settings->Set("UseFFV1", bUseFFV1);
|
||||
settings->Set("BitrateKbps", iBitrateKbps);
|
||||
settings->Set("InternalResolutionFrameDumps", bInternalResolutionFrameDumps);
|
||||
settings->Set("EnablePixelLighting", bEnablePixelLighting);
|
||||
settings->Set("FastDepthCalc", bFastDepthCalc);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue