Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-02-06 21:49:32 +0300
committerSebastian Dröge <slomo@coaxion.net>2022-02-07 10:30:57 +0300
commit12f2b9282a860720b314ea0139b2d7572dd1557e (patch)
tree43fd233017efc7ab27b95a463fe1a9278c670b30 /video/rav1e
parent5a0f7f69762c4e8f696e304f72604940fa9d2fb5 (diff)
rav1enc: Switch from speed preset 5 to 6 as default
This is the default of rav1e nowadays.
Diffstat (limited to 'video/rav1e')
-rw-r--r--video/rav1e/src/rav1enc/imp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/rav1e/src/rav1enc/imp.rs b/video/rav1e/src/rav1enc/imp.rs
index 78d8fb0d3..3c4f38173 100644
--- a/video/rav1e/src/rav1enc/imp.rs
+++ b/video/rav1e/src/rav1enc/imp.rs
@@ -19,7 +19,7 @@ use rav1e::config;
use rav1e::data;
use std::sync::Mutex;
-const DEFAULT_SPEED_PRESET: u32 = 5;
+const DEFAULT_SPEED_PRESET: u32 = 6;
const DEFAULT_LOW_LATENCY: bool = false;
const DEFAULT_MIN_KEY_FRAME_INTERVAL: u64 = 12;
const DEFAULT_MAX_KEY_FRAME_INTERVAL: u64 = 240;