Skip to content
Snippets Groups Projects
Commit 1ed6a0fe authored by Anthony Léonard's avatar Anthony Léonard Committed by Guillaume Roguez
Browse files

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: default avatarGuillaume Roguez <guillaume.roguez@savoirfairelinux.com>
parent a28a8f63
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment