diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-10-12 17:43:27 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-10-12 17:43:27 +0200 |
commit | dfafdd9ef5e8fefa4ac2431c3243cf61c994a6f4 (patch) | |
tree | fcbff5ccaf4fb2662601d7468bb5b5a4025dcbce /src/Config.cpp | |
parent | 9d76b0861eb0249194e96b663fbeca60cd5bfeb0 (diff) |
Constant bitrate option as default for streaming
Diffstat (limited to 'src/Config.cpp')
-rw-r--r-- | src/Config.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Config.cpp b/src/Config.cpp index 2f99625..ec2f777 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -12,6 +12,10 @@ #define CONFIG_FILE_VERSION 1 namespace gsr { + Config::Config() { + streaming_config.record_options.video_quality = "custom"; + } + static std::optional<KeyValue> parse_key_value(std::string_view line) { const size_t space_index = line.find(' '); if(space_index == std::string_view::npos) |