Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKVideoCapability.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
7
8 private int width;
9
10 private int height;
11
12 private int frame;
13
21 public ZoomSDKVideoCapability(int width, int height, int frame) {
22 this.width = width;
23 this.height = height;
24 this.frame = frame;
25 }
26
32 public int getWidth() {
33 return width;
34 }
35
41 public int getHeight() {
42 return height;
43 }
44
50 public int getFrame() {
51 return frame;
52 }
53
59 public void setWidth(int width) {
60 this.width = width;
61 }
62
68 public void setHeight(int height) {
69 this.height = height;
70 }
71
77 public void setFrame(int frame) {
78 this.frame = frame;
79 }
80}
void setFrame(int frame)
Sets the frame rate.
void setHeight(int height)
Sets the video height.
ZoomSDKVideoCapability(int width, int height, int frame)
Constructs a ZoomSDKVideoCapability instance.
void setWidth(int width)
Sets the video width.