media: hantro: Use vb2_find_buffer
authorEzequiel Garcia <ezequiel@vanguardiasur.com.ar>
Mon, 11 Jul 2022 21:11:38 +0000 (22:11 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 17 Jul 2022 10:13:07 +0000 (11:13 +0100)
Use the newly introduced vb2_find_buffer API to get a vb2_buffer
given a buffer timestamp.

Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Acked-by: Tomasz Figa <tfiga@chromium.org>
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/staging/media/hantro/hantro_drv.c
drivers/staging/media/hantro/hantro_g2_vp9_dec.c

index dd8e40937d02b85e55b891d4c112c832787be707..e5fc0a99b72899e55f2ddd6583c2f645ee417e64 100644 (file)
@@ -47,12 +47,10 @@ dma_addr_t hantro_get_ref(struct hantro_ctx *ctx, u64 ts)
 {
        struct vb2_queue *q = v4l2_m2m_get_dst_vq(ctx->fh.m2m_ctx);
        struct vb2_buffer *buf;
-       int index;
 
-       index = vb2_find_timestamp(q, ts, 0);
-       if (index < 0)
+       buf = vb2_find_buffer(q, ts);
+       if (!buf)
                return 0;
-       buf = vb2_get_buffer(q, index);
        return hantro_get_dec_buf_addr(ctx, buf);
 }
 
index c9cb11fd95af73463984d7e33d4f2fee8d339725..6fc4b555517f2b5c427fd3446daae3f9df598138 100644 (file)
@@ -111,17 +111,17 @@ get_ref_buf(struct hantro_ctx *ctx, struct vb2_v4l2_buffer *dst, u64 timestamp)
 {
        struct v4l2_m2m_ctx *m2m_ctx = ctx->fh.m2m_ctx;
        struct vb2_queue *cap_q = &m2m_ctx->cap_q_ctx.q;
-       int buf_idx;
+       struct vb2_buffer *buf;
 
        /*
         * If a ref is unused or invalid, address of current destination
         * buffer is returned.
         */
-       buf_idx = vb2_find_timestamp(cap_q, timestamp, 0);
-       if (buf_idx < 0)
-               return vb2_to_hantro_decoded_buf(&dst->vb2_buf);
+       buf = vb2_find_buffer(cap_q, timestamp);
+       if (!buf)
+               buf = &dst->vb2_buf;
 
-       return vb2_to_hantro_decoded_buf(vb2_get_buffer(cap_q, buf_idx));
+       return vb2_to_hantro_decoded_buf(buf);
 }
 
 static void update_dec_buf_info(struct hantro_decoded_buffer *buf,