mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
media: vim2m: the v4l2_m2m_buf_copy_data args were swapped
The buffer arguments to v4l2_m2m_buf_copy_data args were swapped.
The reason is confusing naming conventions in vim2m. It certainly
could be improved.
Fixes: 7aca565ee3 ("media: vim2m: use v4l2_m2m_buf_copy_data")
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
3f122df4a2
commit
8682469418
|
|
@ -241,7 +241,7 @@ static int device_process(struct vim2m_ctx *ctx,
|
|||
out_vb->sequence =
|
||||
get_q_data(ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE)->sequence++;
|
||||
in_vb->sequence = q_data->sequence++;
|
||||
v4l2_m2m_buf_copy_data(out_vb, in_vb, true);
|
||||
v4l2_m2m_buf_copy_data(in_vb, out_vb, true);
|
||||
|
||||
switch (ctx->mode) {
|
||||
case MEM2MEM_HFLIP | MEM2MEM_VFLIP:
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user