Package cn.rongcloud.callplus.api
Enum RCCallPlusVideoFps
-
- All Implemented Interfaces:
public enum RCCallPlusVideoFps
-
-
Method Summary
Modifier and Type Method Description static RCCallPlusVideoFps
parseVideoFps(int frame)
static RCCallPlusVideoFps
getVideoFps(String videoProfileLabel)
根据字符串查找对应的 RCCallPlusVideoFps枚举值。 int
getFps()
float
getMultiplier()
String
toString()
RCRTCVideoFps
toRTCVideoFps()
static Array<RCCallPlusVideoFps>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static RCCallPlusVideoFps
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
parseVideoFps
static RCCallPlusVideoFps parseVideoFps(int frame)
-
getVideoFps
static RCCallPlusVideoFps getVideoFps(String videoProfileLabel)
根据字符串查找对应的 RCCallPlusVideoFps枚举值。
- Parameters:
videoProfileLabel
- 典型值 VD_480x640_15f 必要条件为 _15f 不区分大小写
-
getFps
int getFps()
-
getMultiplier
float getMultiplier()
-
toString
String toString()
-
toRTCVideoFps
RCRTCVideoFps toRTCVideoFps()
-
values
static Array<RCCallPlusVideoFps> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static RCCallPlusVideoFps valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-