| Index: talk/media/webrtc/webrtcvideoengine2.cc
|
| diff --git a/talk/media/webrtc/webrtcvideoengine2.cc b/talk/media/webrtc/webrtcvideoengine2.cc
|
| index 5deee96bfb4dc5f7b80cbf390dd9ce6d606d3ac2..55c07426d090598877f1c4a6656d5936f20d5c99 100644
|
| --- a/talk/media/webrtc/webrtcvideoengine2.cc
|
| +++ b/talk/media/webrtc/webrtcvideoengine2.cc
|
| @@ -2125,6 +2125,7 @@ WebRtcVideoChannel2::WebRtcVideoSendStream::GetVideoSenderInfo() {
|
| if (stats.bw_limited_resolution)
|
| info.adapt_reason |= CoordinatedVideoAdapter::ADAPTREASON_BANDWIDTH;
|
|
|
| + info.encoder_implementation_name = stats.encoder_implementation_name;
|
| info.ssrc_groups = ssrc_groups_;
|
| info.framerate_input = stats.input_frame_rate;
|
| info.framerate_sent = stats.encode_frame_rate;
|
| @@ -2517,6 +2518,7 @@ WebRtcVideoChannel2::WebRtcVideoReceiveStream::GetVideoReceiverInfo() {
|
| info.ssrc_groups = ssrc_groups_;
|
| info.add_ssrc(config_.rtp.remote_ssrc);
|
| webrtc::VideoReceiveStream::Stats stats = stream_->GetStats();
|
| + info.decoder_implementation_name = stats.decoder_implementation_name;
|
| info.bytes_rcvd = stats.rtp_stats.transmitted.payload_bytes +
|
| stats.rtp_stats.transmitted.header_bytes +
|
| stats.rtp_stats.transmitted.padding_bytes;
|
|
|