• Home
  • Raw
  • Download

Lines Matching refs:frameInfo

87   VCMFrameInformation* frameInfo;  in Decoded()  local
90 frameInfo = _timestampMap.Pop(decodedImage.timestamp()); in Decoded()
93 if (frameInfo == NULL) { in Decoded()
100 decodedImage.set_ntp_time_ms(frameInfo->ntp_time_ms); in Decoded()
101 decodedImage.set_packet_infos(frameInfo->packet_infos); in Decoded()
102 decodedImage.set_rotation(frameInfo->rotation); in Decoded()
105 RTC_DCHECK(frameInfo->decodeStart); in Decoded()
107 decode_time_ms = (now - *frameInfo->decodeStart).ms(); in Decoded()
110 decodedImage.set_processing_time({*frameInfo->decodeStart, now}); in Decoded()
114 if (frameInfo->timing.flags != VideoSendTiming::kInvalid) { in Decoded()
117 frameInfo->timing.encode_start_ms -= ntp_offset_; in Decoded()
118 frameInfo->timing.encode_finish_ms -= ntp_offset_; in Decoded()
119 frameInfo->timing.packetization_finish_ms -= ntp_offset_; in Decoded()
120 frameInfo->timing.pacer_exit_ms -= ntp_offset_; in Decoded()
121 frameInfo->timing.network_timestamp_ms -= ntp_offset_; in Decoded()
122 frameInfo->timing.network2_timestamp_ms -= ntp_offset_; in Decoded()
129 std::max({capture_time_ms, frameInfo->timing.encode_start_ms, in Decoded()
130 frameInfo->timing.encode_finish_ms, in Decoded()
131 frameInfo->timing.packetization_finish_ms, in Decoded()
132 frameInfo->timing.pacer_exit_ms, in Decoded()
133 frameInfo->timing.network_timestamp_ms, in Decoded()
134 frameInfo->timing.network2_timestamp_ms}) + in Decoded()
140 frameInfo->timing.encode_start_ms - sender_delta_ms; in Decoded()
142 frameInfo->timing.encode_finish_ms - sender_delta_ms; in Decoded()
144 frameInfo->timing.packetization_finish_ms - sender_delta_ms; in Decoded()
146 frameInfo->timing.pacer_exit_ms - sender_delta_ms; in Decoded()
148 frameInfo->timing.network_timestamp_ms - sender_delta_ms; in Decoded()
150 frameInfo->timing.network2_timestamp_ms - sender_delta_ms; in Decoded()
153 timing_frame_info.flags = frameInfo->timing.flags; in Decoded()
154 timing_frame_info.decode_start_ms = frameInfo->decodeStart->ms(); in Decoded()
156 timing_frame_info.render_time_ms = frameInfo->renderTimeMs; in Decoded()
158 timing_frame_info.receive_start_ms = frameInfo->timing.receive_start_ms; in Decoded()
159 timing_frame_info.receive_finish_ms = frameInfo->timing.receive_finish_ms; in Decoded()
162 decodedImage.set_timestamp_us(frameInfo->renderTimeMs * in Decoded()
165 frameInfo->content_type); in Decoded()
174 VCMFrameInformation* frameInfo) { in Map() argument
176 _timestampMap.Add(timestamp, frameInfo); in Map()