aboutsummaryrefslogtreecommitdiff
path: root/include/gui/SettingsPage.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2024-10-09 19:08:55 +0200
committerdec05eba <dec05eba@protonmail.com>2024-10-09 19:11:16 +0200
commit9d76b0861eb0249194e96b663fbeca60cd5bfeb0 (patch)
tree7f4746e0e6985b4ca7f590d5f0ced2a2a6fdc355 /include/gui/SettingsPage.hpp
parent61c9b4918ed81a6ad439748f8bcb1c6f9b0cf65e (diff)
Add constant bitrate option
Diffstat (limited to 'include/gui/SettingsPage.hpp')
-rw-r--r--include/gui/SettingsPage.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/gui/SettingsPage.hpp b/include/gui/SettingsPage.hpp
index e9102da..4f5a7c9 100644
--- a/include/gui/SettingsPage.hpp
+++ b/include/gui/SettingsPage.hpp
@@ -49,8 +49,9 @@ namespace gsr {
std::unique_ptr<List> create_audio_track_section();
std::unique_ptr<CheckBox> create_merge_audio_tracks_checkbox();
std::unique_ptr<Widget> create_audio_device_section();
- std::unique_ptr<ComboBox> create_video_quality_box();
- std::unique_ptr<List> create_video_quality();
+ std::unique_ptr<List> create_video_quality_box();
+ std::unique_ptr<Entry> create_video_bitrate_entry();
+ std::unique_ptr<List> create_video_bitrate();
std::unique_ptr<ComboBox> create_color_range_box();
std::unique_ptr<List> create_color_range();
std::unique_ptr<List> create_video_quality_section();
@@ -115,6 +116,8 @@ namespace gsr {
Entry *area_width_entry_ptr = nullptr;
Entry *area_height_entry_ptr = nullptr;
Entry *framerate_entry_ptr = nullptr;
+ Entry *video_bitrate_entry_ptr = nullptr;
+ List *video_bitrate_list_ptr = nullptr;
List *audio_devices_list_ptr = nullptr;
CheckBox *merge_audio_tracks_checkbox_ptr = nullptr;
ComboBox *color_range_box_ptr = nullptr;