diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-02-24 21:40:20 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-02-24 21:40:20 +0100 |
commit | a60fa9b68d31d77281b22eb1e7d8425293046b97 (patch) | |
tree | de3bdd596c6d67c50a07e707ecbe18a4ef553ff4 /src | |
parent | ec092f20c887e9eea1d985d6d0aba9c504ef1849 (diff) |
Higher jpeg quality, we can afford that
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index f96240e..1f488f0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2480,16 +2480,16 @@ static gsr_color_range image_format_to_color_range(gsr_image_format image_format static int video_quality_to_image_quality_value(VideoQuality video_quality) { switch(video_quality) { case VideoQuality::MEDIUM: - return 70; + return 75; case VideoQuality::HIGH: - return 80; - case VideoQuality::VERY_HIGH: return 85; + case VideoQuality::VERY_HIGH: + return 90; case VideoQuality::ULTRA: return 97; } assert(false); - return 85; + return 90; } // TODO: 10-bit and hdr. |