Allow bigger bandwidth for VGA than for CIF.

This commit is contained in:
Ghislain MARY 2015-06-16 14:11:51 +02:00
parent b5d20d05e3
commit d18288dd0d

View file

@ -788,6 +788,8 @@ public class LinphonePreferences {
int bandwidth = 512;
if (preferredVideoSize.equals("720p")) {
bandwidth = 1024 + 128;
} else if (preferredVideoSize.equals("vga")) {
bandwidth = 660;
} else if (preferredVideoSize.equals("qvga")) {
bandwidth = 380;
} else if (preferredVideoSize.equals("qcif")) {