Commit a9079412 authored by Guillaume Beraudo's avatar Guillaume Beraudo
Browse files

QVGA support

parent 5cdf2910
No related merge requests found
Showing with 4 additions and 1 deletion
...@@ -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
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment