]> git.baikalelectronics.ru Git - kernel.git/commit
media: vicodec: reset last_src/dst_buf based on the IS_OUTPUT
authorHans Verkuil <hverkuil@xs4all.nl>
Wed, 13 Mar 2019 14:47:13 +0000 (10:47 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Wed, 20 Mar 2019 09:59:41 +0000 (05:59 -0400)
commit389991e50f6e788cea6a094c278ba09e1658c326
tree324ed2f02a29692676ea03c639c05fb01ad78049
parent06caf48bf28fae09ef6e92a804cdecbbe735d91b
media: vicodec: reset last_src/dst_buf based on the IS_OUTPUT

When start_streaming was called both last_src_buf and last_dst_buf
pointers were set to NULL, but this depends on whether the capture
or output queue starts streaming.

When decoding with resolution changes in between the capture queue
has to restart streaming whenever a resolution change occurs. And
that would reset last_src_buf as well, which causes a problem if
the decoder was stopped by the application. Since last_src_buf
is now NULL, the LAST flag is never set for the last capture
buffer.

Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/vicodec/vicodec-core.c