mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-04-24 10:49:54 +02:00
media: venus: flush all buffers in output plane streamoff
[ Upstream commite750a4b122] For scenarios, when source change is followed by VIDIOC_STREAMOFF on output plane, driver should discard any queued OUTPUT buffers, which are not decoded or dequeued. Flush with HFI_FLUSH_INPUT does not have any actual impact. So, fix it, by invoking HFI_FLUSH_ALL, which will flush all queued buffers. Fixes:85872f861d("media: venus: Mark last capture buffer") Signed-off-by: Dikshita Agarwal <quic_dikshita@quicinc.com> Tested-by: Nathan Hebert <nhebert@chromium.org> Reviewed-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org> Signed-off-by: Stanimir Varbanov <stanimir.k.varbanov@gmail.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0619f7750f
commit
cd6b8fc9c1
@@ -1165,7 +1165,7 @@ static int vdec_stop_output(struct venus_inst *inst)
|
||||
break;
|
||||
case VENUS_DEC_STATE_INIT:
|
||||
case VENUS_DEC_STATE_CAPTURE_SETUP:
|
||||
ret = hfi_session_flush(inst, HFI_FLUSH_INPUT, true);
|
||||
ret = hfi_session_flush(inst, HFI_FLUSH_ALL, true);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user