AgoraRtcRemoteVideoStats
远端视频流的统计信息。
Objective-C
__attribute__((visibility("default"))) @interface AgoraRtcRemoteVideoStats : NSObject
@property(assign, nonatomic) NSUInteger uid;
@property(assign, nonatomic) NSUInteger delay __deprecated;
@property(assign, nonatomic) NSUInteger e2eDelay;
@property(assign, nonatomic) NSUInteger width;
@property(assign, nonatomic) NSUInteger height;
@property(assign, nonatomic) NSUInteger receivedBitrate;
@property(assign, nonatomic) NSUInteger receivedFrameRate;
@property(assign, nonatomic) AgoraVideoStreamType rxStreamType;
@property(assign, nonatomic) NSInteger decoderOutputFrameRate;
@property(assign, nonatomic) NSInteger rendererOutputFrameRate;
@property(assign, nonatomic) NSInteger frameLossRate;
@property(assign, nonatomic) NSInteger packetLossRate;
@property(assign, nonatomic) NSInteger totalFrozenTime;
@property(assign, nonatomic) NSInteger frozenRate;
@property(assign, nonatomic) NSUInteger totalActiveTime;
@property(assign, nonatomic) NSInteger publishDuration;
@property(assign, nonatomic) NSInteger avSyncTimeMs;
@end
uid
用户 ID,指定是哪个用户的视频流。
delay
废弃
延时(毫秒)。
e2eDelay
端到端视频延时(毫秒)。即,自远端用户视频采集起,至本地用户接收并渲染视频的总时长。
width
视频流宽(像素)。
height
视频流高(像素)。
receivedBitrate
(上次统计后)接收到的码率(Kbps)。
receivedFramerate
(上次统计后)接收到的帧率 (fps)。
decoderOutputFrameRate
远端视频解码器的输出帧率,单位为 fps。
rendererOutputFrameRate
远端视频渲染器的输出帧率,单位为 fps。
frameLossRate
远端视频丢包率(%)。
packetLossRate
远端视频在使用抗丢包技术之后的丢包率(%)。
rxStreamType
视频流类型,大流或小流。详见 AgoraVideoStreamType。
totalFrozenTime
远端用户在加入频道后发生视频卡顿的累计时长(ms)。通话过程中,视频帧率设置不低于 5 fps 时,连续渲染的两帧视频之间间隔超过 500 ms,则记为一次视频卡顿。
frozenRate
远端用户在加入频道后发生视频卡顿的累计时长占视频总有效时长的百分比 (%)。视频有效时长是指远端用户加入频道后视频未被停止发送或禁用的时长。
totalActiveTime
视频有效时长(毫秒)。
视频总有效时长是远端用户或主播加入频道后,既没有停止发送视频流,也没有禁用视频模块的通话时长。
publishDuration
远端视频流的累计发布时长(毫秒)。
avSyncTimeMs
音频超前视频的时间 (ms)。
注意
如果为负值,则代表音频落后于视频。