mirror of
https://gitlab.com/gabmus/envision.git
synced 2025-07-31 13:18:46 +00:00
wivrn encoder presets: fix group for 3 vaapi, update descriptions
This commit is contained in:
parent
520f7af8b4
commit
5eb42335e0
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ fn wivrn_encoder_presets() -> Vec<(&'static str, &'static str, Vec<WivrnConfEnco
|
||||||
vec![
|
vec![
|
||||||
(
|
(
|
||||||
"3x VAAPI",
|
"3x VAAPI",
|
||||||
"Use 3 hardware accelerated encoders using VAAPI and the H265 codec.",
|
"Split encoding in 3 slices using VAAPI h265 hardware acceleration.",
|
||||||
vec![
|
vec![
|
||||||
WivrnConfEncoder {
|
WivrnConfEncoder {
|
||||||
encoder: Encoder::Vaapi,
|
encoder: Encoder::Vaapi,
|
||||||
|
@ -33,7 +33,7 @@ fn wivrn_encoder_presets() -> Vec<(&'static str, &'static str, Vec<WivrnConfEnco
|
||||||
height: Some(1.0),
|
height: Some(1.0),
|
||||||
offset_x: Some(0.5),
|
offset_x: Some(0.5),
|
||||||
offset_y: Some(0.0),
|
offset_y: Some(0.0),
|
||||||
group: Some(1),
|
group: Some(0),
|
||||||
codec: Codec::H265,
|
codec: Codec::H265,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
|
@ -41,7 +41,7 @@ fn wivrn_encoder_presets() -> Vec<(&'static str, &'static str, Vec<WivrnConfEnco
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
"2x VAAPI + 1 Software",
|
"2x VAAPI + 1 Software",
|
||||||
"Use 2 hardware accelerated encoders using VAAPI and a third one using software encoding. The hardware encoders use the H265 codec, while the software encoder uses H264.",
|
"Split encoding in 3 slices, half the image using VAAPI h265 hardware acceleration, the other half using h264 software encoding. Lowest possible latency at the cost of CPU usage and some quality degradation.",
|
||||||
vec![
|
vec![
|
||||||
WivrnConfEncoder {
|
WivrnConfEncoder {
|
||||||
encoder: Encoder::Vaapi,
|
encoder: Encoder::Vaapi,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue