Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
a9079412
Commit
a9079412
authored
14 years ago
by
Guillaume Beraudo
Browse files
Options
Download
Patches
Plain Diff
QVGA support
parent
5cdf2910
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/common/org/linphone/core/VideoSize.java
+4
-1
java/common/org/linphone/core/VideoSize.java
with
4 additions
and
1 deletion
java/common/org/linphone/core/VideoSize.java
+
4
−
1
View file @
a9079412
...
@@ -25,6 +25,7 @@ public final class VideoSize {
...
@@ -25,6 +25,7 @@ public final class VideoSize {
public
static
final
int
QCIF
=
0
;
public
static
final
int
QCIF
=
0
;
public
static
final
int
CIF
=
1
;
public
static
final
int
CIF
=
1
;
public
static
final
int
HVGA
=
2
;
public
static
final
int
HVGA
=
2
;
public
static
final
int
QVGA
=
3
;
private
int
width
;
private
int
width
;
public
int
getWidth
()
{
return
width
;}
public
int
getWidth
()
{
return
width
;}
...
@@ -47,7 +48,9 @@ public final class VideoSize {
...
@@ -47,7 +48,9 @@ public final class VideoSize {
case
CIF:
case
CIF:
return
new
VideoSize
(
352
,
288
);
return
new
VideoSize
(
352
,
288
);
case
HVGA:
case
HVGA:
return
new
VideoSize
(
320
,
480
);
return
new
VideoSize
(
480
,
320
);
case
QVGA:
return
new
VideoSize
(
320
,
240
);
default
:
default
:
return
new
VideoSize
();
// Invalid one
return
new
VideoSize
();
// Invalid one
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets