Lines Matching refs:_nextFrameInfoIdx
194 _nextFrameInfoIdx(0), in VCMGenericDecoder()
223 _frameInfos[_nextFrameInfoIdx].decodeStart = now; in Decode()
224 _frameInfos[_nextFrameInfoIdx].renderTimeMs = frame.RenderTimeMs(); in Decode()
225 _frameInfos[_nextFrameInfoIdx].rotation = frame.rotation(); in Decode()
226 _frameInfos[_nextFrameInfoIdx].timing = frame.video_timing(); in Decode()
227 _frameInfos[_nextFrameInfoIdx].ntp_time_ms = in Decode()
229 _frameInfos[_nextFrameInfoIdx].packet_infos = frame.PacketInfos(); in Decode()
235 _frameInfos[_nextFrameInfoIdx].content_type = frame.contentType(); in Decode()
238 _frameInfos[_nextFrameInfoIdx].content_type = _last_keyframe_content_type; in Decode()
240 _callback->Map(frame.Timestamp(), &_frameInfos[_nextFrameInfoIdx]); in Decode()
242 _nextFrameInfoIdx = (_nextFrameInfoIdx + 1) % kDecoderFrameMemoryLength; in Decode()