From 1ed6a0fe690329666b9b7787d19a62cc9809b12c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Anthony=20L=C3=A9onard?=
 <anthony.leonard@savoirfairelinux.com>
Date: Mon, 3 Apr 2017 15:19:35 -0400
Subject: [PATCH] video: disable auto quality by default

Many problems arise when codec quality is set to automatic
configuration. Micro-cuts can appear at a periodic interval
during a call and network burst effects on a conversation
last for a longer period than the burst itself.

As disabling automatic configuration proved to fix those
issues, it is now disabled by default.

Change-Id: Ib5098d3acc77913d605034530a44a61d3003599d
Reviewed-by: Guillaume Roguez <guillaume.roguez@savoirfairelinux.com>
---
 src/media/media_codec.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/media/media_codec.h b/src/media/media_codec.h
index 55651910fc..61da255e8a 100644
--- a/src/media/media_codec.h
+++ b/src/media/media_codec.h
@@ -192,7 +192,7 @@ struct AccountVideoCodecInfo : AccountCodecInfo
     unsigned frameRate;
     unsigned profileId;
     std::string parameters;
-    bool isAutoQualityEnabled{true};
+    bool isAutoQualityEnabled{false};
 };
 bool operator== (SystemCodecInfo codec1, SystemCodecInfo codec2);
 
-- 
GitLab