Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
ZoomSDKVideoCapability.java
Go to the documentation of this file.
1
package
us.zoom.sdk;
2
6
public
class
ZoomSDKVideoCapability
{
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
}
us.zoom.sdk.ZoomSDKVideoCapability.setFrame
void setFrame(int frame)
Sets the frame rate.
Definition
ZoomSDKVideoCapability.java:77
us.zoom.sdk.ZoomSDKVideoCapability.getFrame
int getFrame()
Gets the frame rate.
Definition
ZoomSDKVideoCapability.java:50
us.zoom.sdk.ZoomSDKVideoCapability.height
int height
Definition
ZoomSDKVideoCapability.java:10
us.zoom.sdk.ZoomSDKVideoCapability.setHeight
void setHeight(int height)
Sets the video height.
Definition
ZoomSDKVideoCapability.java:68
us.zoom.sdk.ZoomSDKVideoCapability.getWidth
int getWidth()
Gets the video width.
Definition
ZoomSDKVideoCapability.java:32
us.zoom.sdk.ZoomSDKVideoCapability.getHeight
int getHeight()
Gets the video height.
Definition
ZoomSDKVideoCapability.java:41
us.zoom.sdk.ZoomSDKVideoCapability.ZoomSDKVideoCapability
ZoomSDKVideoCapability(int width, int height, int frame)
Constructs a ZoomSDKVideoCapability instance.
Definition
ZoomSDKVideoCapability.java:21
us.zoom.sdk.ZoomSDKVideoCapability.width
int width
Definition
ZoomSDKVideoCapability.java:8
us.zoom.sdk.ZoomSDKVideoCapability.frame
int frame
Definition
ZoomSDKVideoCapability.java:12
us.zoom.sdk.ZoomSDKVideoCapability.setWidth
void setWidth(int width)
Sets the video width.
Definition
ZoomSDKVideoCapability.java:59
msdk
sdk
ZoomSDKVideoCapability.java
Generated by
1.16.1