src.main.java.io.agora.rtc.RemoteVideoTrackStats Maven / Gradle / Ivy
//
//
// Agora Media SDK
// Copyright (c) 2020 Agora IO. All rights reserved.
// This file is generated by tool, do NOT modify it
//
//
package io.agora.rtc;
public class RemoteVideoTrackStats {
public RemoteVideoTrackStats() {
}
public RemoteVideoTrackStats(int uid, int delay, int width, int height, int receivedBitrate,
int decoderOutputFrameRate, int rendererOutputFrameRate, int frameLossRate, int packetLossRate,
int rxStreamType, int totalFrozenTime, int frozenRate, int totalDecodedFrames, int avSyncTimeMs,
int downlinkProcessTimeMs, int frameRenderDelayMs, long totalActiveTime, long publishDuration) {
this.uid = uid;
this.delay = delay;
this.width = width;
this.height = height;
this.receivedBitrate = receivedBitrate;
this.decoderOutputFrameRate = decoderOutputFrameRate;
this.rendererOutputFrameRate = rendererOutputFrameRate;
this.frameLossRate = frameLossRate;
this.packetLossRate = packetLossRate;
this.rxStreamType = rxStreamType;
this.totalFrozenTime = totalFrozenTime;
this.frozenRate = frozenRate;
this.totalDecodedFrames = totalDecodedFrames;
this.avSyncTimeMs = avSyncTimeMs;
this.downlinkProcessTimeMs = downlinkProcessTimeMs;
this.frameRenderDelayMs = frameRenderDelayMs;
this.totalActiveTime = totalActiveTime;
this.publishDuration = publishDuration;
}
private int uid;
public int getUid() {
return this.uid;
}
public void setUid(int uid) {
this.uid = uid;
}
private int delay;
public int getDelay() {
return this.delay;
}
public void setDelay(int delay) {
this.delay = delay;
}
private int width;
public int getWidth() {
return this.width;
}
public void setWidth(int width) {
this.width = width;
}
private int height;
public int getHeight() {
return this.height;
}
public void setHeight(int height) {
this.height = height;
}
private int receivedBitrate;
public int getReceivedBitrate() {
return this.receivedBitrate;
}
public void setReceivedBitrate(int receivedBitrate) {
this.receivedBitrate = receivedBitrate;
}
private int decoderOutputFrameRate;
public int getDecoderOutputFrameRate() {
return this.decoderOutputFrameRate;
}
public void setDecoderOutputFrameRate(int decoderOutputFrameRate) {
this.decoderOutputFrameRate = decoderOutputFrameRate;
}
private int rendererOutputFrameRate;
public int getRendererOutputFrameRate() {
return this.rendererOutputFrameRate;
}
public void setRendererOutputFrameRate(int rendererOutputFrameRate) {
this.rendererOutputFrameRate = rendererOutputFrameRate;
}
private int frameLossRate;
public int getFrameLossRate() {
return this.frameLossRate;
}
public void setFrameLossRate(int frameLossRate) {
this.frameLossRate = frameLossRate;
}
private int packetLossRate;
public int getPacketLossRate() {
return this.packetLossRate;
}
public void setPacketLossRate(int packetLossRate) {
this.packetLossRate = packetLossRate;
}
private int rxStreamType;
public int getRxStreamType() {
return this.rxStreamType;
}
public void setRxStreamType(int rxStreamType) {
this.rxStreamType = rxStreamType;
}
private int totalFrozenTime;
public int getTotalFrozenTime() {
return this.totalFrozenTime;
}
public void setTotalFrozenTime(int totalFrozenTime) {
this.totalFrozenTime = totalFrozenTime;
}
private int frozenRate;
public int getFrozenRate() {
return this.frozenRate;
}
public void setFrozenRate(int frozenRate) {
this.frozenRate = frozenRate;
}
private int totalDecodedFrames;
public int getTotalDecodedFrames() {
return this.totalDecodedFrames;
}
public void setTotalDecodedFrames(int totalDecodedFrames) {
this.totalDecodedFrames = totalDecodedFrames;
}
private int avSyncTimeMs;
public int getAvSyncTimeMs() {
return this.avSyncTimeMs;
}
public void setAvSyncTimeMs(int avSyncTimeMs) {
this.avSyncTimeMs = avSyncTimeMs;
}
private int downlinkProcessTimeMs;
public int getDownlinkProcessTimeMs() {
return this.downlinkProcessTimeMs;
}
public void setDownlinkProcessTimeMs(int downlinkProcessTimeMs) {
this.downlinkProcessTimeMs = downlinkProcessTimeMs;
}
private int frameRenderDelayMs;
public int getFrameRenderDelayMs() {
return this.frameRenderDelayMs;
}
public void setFrameRenderDelayMs(int frameRenderDelayMs) {
this.frameRenderDelayMs = frameRenderDelayMs;
}
private long totalActiveTime;
public long getTotalActiveTime() {
return this.totalActiveTime;
}
public void setTotalActiveTime(long totalActiveTime) {
this.totalActiveTime = totalActiveTime;
}
private long publishDuration;
public long getPublishDuration() {
return this.publishDuration;
}
public void setPublishDuration(long publishDuration) {
this.publishDuration = publishDuration;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy