Lines Matching refs:vimc_buf
357 struct vimc_capture_buffer *vimc_buf; in vimc_capture_process_frame() local
363 vimc_buf = list_first_entry_or_null(&vcapture->buf_list, in vimc_capture_process_frame()
364 typeof(*vimc_buf), list); in vimc_capture_process_frame()
365 if (!vimc_buf) { in vimc_capture_process_frame()
371 list_del(&vimc_buf->list); in vimc_capture_process_frame()
376 vimc_buf->vb2.vb2_buf.timestamp = ktime_get_ns(); in vimc_capture_process_frame()
377 vimc_buf->vb2.sequence = vcapture->sequence++; in vimc_capture_process_frame()
378 vimc_buf->vb2.field = vcapture->format.field; in vimc_capture_process_frame()
380 vbuf = vb2_plane_vaddr(&vimc_buf->vb2.vb2_buf, 0); in vimc_capture_process_frame()
385 vb2_set_plane_payload(&vimc_buf->vb2.vb2_buf, 0, in vimc_capture_process_frame()
387 vb2_buffer_done(&vimc_buf->vb2.vb2_buf, VB2_BUF_STATE_DONE); in vimc_capture_process_frame()