From f270fc768648e8e1fd72f9c18e450db8f1ac52e9 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Fri, 21 Jan 2022 15:34:06 +0100 Subject: RTP: VAAPI seems to not support VBR and low-power mode at the same time --- plugins/rtp/src/codec_util.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/rtp') diff --git a/plugins/rtp/src/codec_util.vala b/plugins/rtp/src/codec_util.vala index 9709025e..51b37e31 100644 --- a/plugins/rtp/src/codec_util.vala +++ b/plugins/rtp/src/codec_util.vala @@ -140,7 +140,7 @@ public class Dino.Plugins.Rtp.CodecUtil { public static string? get_encode_args(string media, string codec, string encode, JingleRtp.PayloadType? payload_type) { // H264 if (encode == "msdkh264enc") return @" rate-control=vbr"; - if (encode == "vaapih264enc") return @" rate-control=vbr tune=low-power"; + if (encode == "vaapih264enc") return @" rate-control=vbr"; if (encode == "x264enc") return @" byte-stream=1 speed-preset=ultrafast tune=zerolatency bframes=0 cabac=false dct8x8=false"; // VP8 -- cgit v1.2.3-54-g00ecf