Add correct Bitrate for 1080p

This commit is contained in:
Florian Märkl 2020-12-25 15:04:57 +01:00
commit aba17d48a3
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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;