Lines Matching refs:frameIndex
395 uint64_t frameIndex, std::function<void(const std::unique_ptr<C2Work> &)> fillWork) { in finish() argument
399 if (queue->pending().count(frameIndex) == 0) { in finish()
400 ALOGW("unknown frame index: %" PRIu64, frameIndex); in finish()
403 work = std::move(queue->pending().at(frameIndex)); in finish()
404 queue->pending().erase(frameIndex); in finish()
415 uint64_t frameIndex, in cloneAndSend() argument
419 if (currentWork->input.ordinal.frameIndex == frameIndex) { in cloneAndSend()
424 if (queue->pending().count(frameIndex) == 0) { in cloneAndSend()
425 ALOGW("unknown frame index: %" PRIu64, frameIndex); in cloneAndSend()
428 work->input.flags = queue->pending().at(frameIndex)->input.flags; in cloneAndSend()
429 work->input.ordinal = queue->pending().at(frameIndex)->input.ordinal; in cloneAndSend()
539 ALOGV("start processing frame #%" PRIu64, work->input.ordinal.frameIndex.peeku()); in processQueue()
548 ALOGV("processed frame #%" PRIu64, work->input.ordinal.frameIndex.peeku()); in processQueue()
574 uint64_t frameIndex = work->input.ordinal.frameIndex.peeku(); in processQueue() local
575 if (queue->pending().count(frameIndex) != 0) { in processQueue()
576 unexpected = std::move(queue->pending().at(frameIndex)); in processQueue()
577 queue->pending().erase(frameIndex); in processQueue()
579 (void)queue->pending().insert({ frameIndex, std::move(work) }); in processQueue()