]> git.baikalelectronics.ru Git - kernel.git/commit
media: cedrus: Fix .buf_prepare
authorAndrzej Pietrasiewicz <andrzej.p@collabora.com>
Wed, 5 May 2021 12:23:47 +0000 (14:23 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Wed, 2 Jun 2021 11:10:03 +0000 (13:10 +0200)
commit13d026f483faded6f0287df33593fa5b4a5a3fb4
tree43434e75d9047df223a8149fdcd0519f9dfa9ad7
parentfa0869ae63fc7dd07beda81ced38171f30362f18
media: cedrus: Fix .buf_prepare

The driver should only set the payload on .buf_prepare if the
buffer is CAPTURE type. If an OUTPUT buffer has a zero bytesused
set by userspace then v4l2-core will set it to buffer length.

If we overwrite bytesused for OUTPUT buffers, too, then
vb2_get_plane_payload() will return incorrect value which might be then
written to hw registers by the driver in cedrus_h264.c or cedrus_vp8.c.

Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/staging/media/sunxi/cedrus/cedrus_video.c