public class LVAVConfig
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static interface |
LVAVConfig.DegradationPreference
|
static interface |
LVAVConfig.Profile
|
Modifier and Type | Field and Description |
---|---|
static int |
DISABLED
仅支持默认的码率自适应功能
|
static int |
MAINTAIN_FRAMERATE
网络带宽不足时,会通过降低编码分辨率来保持编码帧率
|
static int |
MAINTAIN_RESOLUTION
网络带宽不足时,会通过降低编码帧率来保持视频编码分辨率
|
static int |
PROFILE_180P
分辨率:180x320
码率:[100, 300]
|
static int |
PROFILE_270P
分辨率:270x480
码率:[200, 500]
|
static int |
PROFILE_360P
分辨率:360x640
码率:[300, 800]
|
static int |
PROFILE_480P
分辨率:480x640
码率:[350, 1000]
|
static int |
PROFILE_540P
分辨率:540x960
码率:[400, 1200]
|
static int |
PROFILE_720P
分辨率:720x1280
码率:[600, 1800]
|
Constructor and Description |
---|
LVAVConfig() |
LVAVConfig(int profile) |
Modifier and Type | Method and Description |
---|---|
LVAVConfig |
clone() |
boolean |
equals(java.lang.Object object) |
int |
getVideoCaptureHeight()
获取视频采集高度
|
int |
getVideoCaptureWidth()
获取视频采集宽度
|
int |
getVideoDegradationPreference()
获取分辨率自适应策略
|
int |
getVideoEncodeHeight()
获取视频编码高度
|
int |
getVideoEncodeWidth()
获取视频编码宽度
|
int |
getVideoFrameRate()
获取视频帧率
|
int |
getVideoMinBitrate()
获取视频最小码率
|
int |
getVideoTargetBitrate()
获取视频发送码率
|
int |
hashCode() |
LVAVConfig |
setVideoCaptureHeight(int capture_height)
设置视频采集高度
|
LVAVConfig |
setVideoCaptureWidth(int capture_width)
设置视频采集宽度
|
LVAVConfig |
setVideoDegradationPreference(int preference)
设置分辨率自适应策略
|
LVAVConfig |
setVideoEncodeHeight(int height)
设置视频编码高度
|
LVAVConfig |
setVideoEncodeWidth(int width)
设置视频编码宽度
|
LVAVConfig |
setVideoFrameRate(int videoFrameRate)
设置视频帧率
|
LVAVConfig |
setVideoMinBitrate(int min_bitrate)
设置视频编码最小码率
|
LVAVConfig |
setVideoTargetBitrate(int push_bitrate)
设置视频编码目标码率
|
java.lang.String |
toString() |
public static final int PROFILE_180P
public static final int PROFILE_270P
public static final int PROFILE_360P
public static final int PROFILE_480P
public static final int PROFILE_540P
public static final int PROFILE_720P
public static final int DISABLED
public static final int MAINTAIN_FRAMERATE
public static final int MAINTAIN_RESOLUTION
public int getVideoEncodeWidth()
public LVAVConfig setVideoEncodeWidth(int width)
width
- 编码宽度public int getVideoEncodeHeight()
public LVAVConfig setVideoEncodeHeight(int height)
height
- 编码高度public int getVideoCaptureWidth()
public LVAVConfig setVideoCaptureWidth(int capture_width)
capture_width
- 采集宽度public int getVideoCaptureHeight()
public LVAVConfig setVideoCaptureHeight(int capture_height)
capture_height
- 采集高度public int getVideoFrameRate()
public LVAVConfig setVideoFrameRate(int videoFrameRate)
videoFrameRate
- 帧率public int getVideoTargetBitrate()
public LVAVConfig setVideoTargetBitrate(int push_bitrate)
push_bitrate
- 发送码率public int getVideoMinBitrate()
public LVAVConfig setVideoMinBitrate(int min_bitrate)
min_bitrate
- 最小码率public int getVideoDegradationPreference()
public LVAVConfig setVideoDegradationPreference(int preference)
preference
- 详见LVAVConfig.DegradationPreference
public boolean equals(java.lang.Object object)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public LVAVConfig clone()
clone
in class java.lang.Object