Home | History | Annotate | Download | only in webrtc

Lines Matching refs:rinfo

381   // Populate |rinfo| based on previously-set data in |*this|.
382 void ExportTo(VideoReceiverInfo* rinfo) {
384 rinfo->framerate_rcvd = framerate_;
385 rinfo->decode_ms = decode_ms_;
386 rinfo->max_decode_ms = max_decode_ms_;
387 rinfo->current_delay_ms = current_delay_ms_;
388 rinfo->target_delay_ms = target_delay_ms_;
389 rinfo->jitter_buffer_ms = jitter_buffer_ms_;
390 rinfo->min_playout_delay_ms = min_playout_delay_ms_;
391 rinfo->render_delay_ms = render_delay_ms_;
2618 VideoReceiverInfo rinfo;
2619 rinfo.add_ssrc(ssrc);
2620 rinfo.bytes_rcvd = received.bytes;
2621 rinfo.packets_rcvd = received.packets;
2622 rinfo.packets_lost = -1;
2623 rinfo.packets_concealed = -1;
2624 rinfo.fraction_lost = -1; // from SentRTCP
2625 rinfo.frame_width = channel->render_adapter()->width();
2626 rinfo.frame_height = channel->render_adapter()->height();
2628 rinfo.framerate_decoded = fps;
2629 rinfo.framerate_output = fps;
2630 rinfo.capture_start_ntp_time_ms =
2632 channel->decoder_observer()->ExportTo(&rinfo);
2638 rinfo.firs_sent = rtcp_sent.fir_packets;
2639 rinfo.plis_sent = rtcp_sent.pli_packets;
2640 rinfo.nacks_sent = rtcp_sent.nack_packets;
2642 rinfo.firs_sent = -1;
2643 rinfo.plis_sent = -1;
2644 rinfo.nacks_sent = -1;
2656 rinfo.packets_lost = incoming_stream_rtcp_stats.cumulative_lost;
2657 rinfo.fraction_lost = static_cast<float>(
2660 info->receivers.push_back(rinfo);