Skip to content

Commit

Permalink
https://github.com/AgoraIO/Basic-Video-Call/issues/57
Browse files Browse the repository at this point in the history
  • Loading branch information
plutoless committed Jul 4, 2019
1 parent 2b7de2d commit e1970ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void onRtcStats(RtcStats stats) {

@Override
public void onRemoteVideoStats(RemoteVideoStats stats) {
log.debug("onRemoteVideoStats " + stats.uid + " " + stats.delay + " " + stats.receivedBitrate + " " + stats.receivedFrameRate + " " + stats.width + " " + stats.height);
log.debug("onRemoteVideoStats " + stats.uid + " " + stats.delay + " " + stats.receivedBitrate + " " + stats.rendererOutputFrameRate + " " + stats.width + " " + stats.height);

Iterator<AGEventHandler> it = mEventHandlerList.keySet().iterator();
while (it.hasNext()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ private void doHandleExtraCallback(int type, Object... data) {

if (Constant.SHOW_VIDEO_INFO) {
if (mLayoutType == LAYOUT_TYPE_DEFAULT) {
mGridVideoViewContainer.addVideoInfo(stats.uid, new VideoInfoData(stats.width, stats.height, stats.delay, stats.receivedFrameRate, stats.receivedBitrate));
mGridVideoViewContainer.addVideoInfo(stats.uid, new VideoInfoData(stats.width, stats.height, stats.delay, stats.rendererOutputFrameRate, stats.receivedBitrate));
int uid = config().mUid;
int profileIndex = getVideoEncResolutionIndex();
String resolution = getResources().getStringArray(R.array.string_array_resolutions)[profileIndex];
Expand Down

0 comments on commit e1970ce

Please sign in to comment.