Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKVideoCapability.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
4
5 private int width;
6
7 private int height;
8
9 private int frame;
10
11 public ZoomSDKVideoCapability(int width, int height, int frame) {
12 this.width = width;
13 this.height = height;
14 this.frame = frame;
15 }
16
17 public int getWidth() {
18 return width;
19 }
20
21 public int getHeight() {
22 return height;
23 }
24
25 public int getFrame() {
26 return frame;
27 }
28
29 public void setWidth(int width) {
30 this.width = width;
31 }
32
33 public void setHeight(int height) {
34 this.height = height;
35 }
36
37 public void setFrame(int frame) {
38 this.frame = frame;
39 }
40}
ZoomSDKVideoCapability(int width, int height, int frame)