mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-03 15:26:27 +00:00
Allow bigger bandwidth for VGA than for CIF.
This commit is contained in:
parent
b5d20d05e3
commit
d18288dd0d
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…
Add table
Reference in a new issue