Home
last modified time | relevance | path

Searched refs:iFrameIdx (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/
H A Dffmpeg_reference_parser.cpp304 int32_t iFrameIdx; in GetGopIdFromSeekPos() local
306 iFrameIdx = std::upper_bound(ptsListFromZero_.begin(), ptsListFromZero_.end(), in GetGopIdFromSeekPos()
308 if (iFrameIdx < 0) { in GetGopIdFromSeekPos()
309 iFrameIdx = static_cast<int32_t>(ptsListFromZero_.size()) - 1; in GetGopIdFromSeekPos()
316iFrameIdx = av_index_search_timestamp(st, orgPts + CalculateTimeByFrameIndex(st, 0), AVSEEK_FLAG_B… in GetGopIdFromSeekPos()
317 FALSE_RETURN_V_MSG_E(iFrameIdx >= 0, Status::ERROR_UNKNOWN, in GetGopIdFromSeekPos()
321 …gopId = std::upper_bound(IFramePos_.begin(), IFramePos_.end(), iFrameIdx) - IFramePos_.begin() - 1; in GetGopIdFromSeekPos()