]> git.baikalelectronics.ru Git - kernel.git/commit
media: mtk-vcodec: fix access to incorrect planes member
authorAlexandre Courbot <acourbot@chromium.org>
Tue, 26 Mar 2019 07:44:23 +0000 (03:44 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Fri, 29 Mar 2019 11:41:46 +0000 (07:41 -0400)
commitc92f8695848bcd0caecbd90c22be8ad167b7a922
tree995b02beeb841f438c22217df153c6d8137a1840
parent63c8f3199864111308a67d1c8b1bf39760014f49
media: mtk-vcodec: fix access to incorrect planes member

Commit 7e932c6f10a7 ("media: mtk-vcodec: Correct return type for mem2mem
buffer helpers") fixed the return types for mem2mem buffer helper
functions by changing a few local variables from vb2_buffer to
vb2_v4l2_buffer. However, it left a few accesses to vb2_buffer::planes
as-is, accidentally turning them into accesses to
vb2_v4l2_buffer::planes and resulting in values being read from/written
to the wrong place.

Fix this by inserting vb2_buf into these accesses so they mimic their
original behavior.

Fixes: 7e932c6f10a7 ("media: mtk-vcodec: Correct return type for mem2mem buffer helpers")
Signed-off-by: Alexandre Courbot <acourbot@chromium.org>
Reviewed-by: Ezequiel Garcia <ezequiel@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/mtk-vcodec/mtk_vcodec_dec.c
drivers/media/platform/mtk-vcodec/mtk_vcodec_enc.c