Change the value of kMinQuality to 5 (#9508)

* Change the minimum value of the bitrate slider to 5

Signed-off-by: hashiguchi <hashiguchi@mtrx.jp>

* Change the value of kMinQuality to 5

Signed-off-by: hashiguchi <hashiguchi@mtrx.jp>

---------

Signed-off-by: hashiguchi <hashiguchi@mtrx.jp>
This commit is contained in:
hashiguchi 2024-09-28 22:52:05 +09:00 committed by GitHub
parent 4a745d82f6
commit d563372a91
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,7 +201,7 @@ const double kMinFps = 5;
const double kDefaultFps = 30; const double kDefaultFps = 30;
const double kMaxFps = 120; const double kMaxFps = 120;
const double kMinQuality = 10; const double kMinQuality = 5;
const double kDefaultQuality = 50; const double kDefaultQuality = 50;
const double kMaxQuality = 100; const double kMaxQuality = 100;
const double kMaxMoreQuality = 2000; const double kMaxMoreQuality = 2000;
@ -571,4 +571,4 @@ extension WindowsTargetExt on int {
WindowsTarget get windowsVersion => getWindowsTarget(this); WindowsTarget get windowsVersion => getWindowsTarget(this);
} }
const kCheckSoftwareUpdateFinish = 'check_software_update_finish'; const kCheckSoftwareUpdateFinish = 'check_software_update_finish';