mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-14 10:46:51 -07:00
Add correct Bitrate for 1080p
This commit is contained in:
parent
767e545f38
commit
aba17d48a3
2 changed files with 2 additions and 2 deletions
|
@ -139,7 +139,7 @@ SettingsDialog::SettingsDialog(Settings *settings, QWidget *parent) : QDialog(pa
|
|||
{ CHIAKI_VIDEO_RESOLUTION_PRESET_360p, "360p"},
|
||||
{ CHIAKI_VIDEO_RESOLUTION_PRESET_540p, "540p"},
|
||||
{ CHIAKI_VIDEO_RESOLUTION_PRESET_720p, "720p"},
|
||||
{ CHIAKI_VIDEO_RESOLUTION_PRESET_1080p, "1080p (PS4 Pro only)"}
|
||||
{ CHIAKI_VIDEO_RESOLUTION_PRESET_1080p, "1080p (PS5 and PS4 Pro only)"}
|
||||
};
|
||||
auto current_res = settings->GetResolution();
|
||||
for(const auto &p : resolution_strings)
|
||||
|
|
|
@ -108,7 +108,7 @@ CHIAKI_EXPORT void chiaki_connect_video_profile_preset(ChiakiConnectVideoProfile
|
|||
case CHIAKI_VIDEO_RESOLUTION_PRESET_1080p:
|
||||
profile->width = 1920;
|
||||
profile->height = 1080;
|
||||
profile->bitrate = 10000; // TODO
|
||||
profile->bitrate = 15000;
|
||||
break;
|
||||
default:
|
||||
profile->width = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue