From: Hans Verkuil <hverkuil-ci...@xs4all.nl>

Use the new v4l2_m2m_buf_copy_data() function in vicodec.

Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>
---
 drivers/media/platform/vicodec/vicodec-core.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/drivers/media/platform/vicodec/vicodec-core.c 
b/drivers/media/platform/vicodec/vicodec-core.c
index 2b7daff63425..bed15580f3ec 100644
--- a/drivers/media/platform/vicodec/vicodec-core.c
+++ b/drivers/media/platform/vicodec/vicodec-core.c
@@ -190,18 +190,8 @@ static int device_process(struct vicodec_ctx *ctx,
        }
 
        dst_vb->sequence = q_dst->sequence++;
-       dst_vb->vb2_buf.timestamp = src_vb->vb2_buf.timestamp;
-
-       if (src_vb->flags & V4L2_BUF_FLAG_TIMECODE)
-               dst_vb->timecode = src_vb->timecode;
-       dst_vb->field = src_vb->field;
        dst_vb->flags &= ~V4L2_BUF_FLAG_LAST;
-       dst_vb->flags |= src_vb->flags &
-               (V4L2_BUF_FLAG_TIMECODE |
-                V4L2_BUF_FLAG_KEYFRAME |
-                V4L2_BUF_FLAG_PFRAME |
-                V4L2_BUF_FLAG_BFRAME |
-                V4L2_BUF_FLAG_TSTAMP_SRC_MASK);
+       v4l2_m2m_buf_copy_data(src_vb, dst_vb, !ctx->is_enc);
 
        return 0;
 }
-- 
2.19.2

Reply via email to