Allow bigger bandwidth for VGA than for CIF.
This commit is contained in:
parent
455fac855e
commit
5ce6ec2377
1 changed files with 2 additions and 0 deletions
|
@ -788,6 +788,8 @@ public class LinphonePreferences {
|
||||||
int bandwidth = 512;
|
int bandwidth = 512;
|
||||||
if (preferredVideoSize.equals("720p")) {
|
if (preferredVideoSize.equals("720p")) {
|
||||||
bandwidth = 1024 + 128;
|
bandwidth = 1024 + 128;
|
||||||
|
} else if (preferredVideoSize.equals("vga")) {
|
||||||
|
bandwidth = 660;
|
||||||
} else if (preferredVideoSize.equals("qvga")) {
|
} else if (preferredVideoSize.equals("qvga")) {
|
||||||
bandwidth = 380;
|
bandwidth = 380;
|
||||||
} else if (preferredVideoSize.equals("qcif")) {
|
} else if (preferredVideoSize.equals("qcif")) {
|
||||||
|
|
Loading…
Reference in a new issue