mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +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;
|
||||
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")) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue