OSDN Git Service

media: venus: vdec: Mark flushed buffers with error state
authorStanimir Varbanov <stanimir.varbanov@linaro.org>
Tue, 31 Mar 2020 16:19:51 +0000 (18:19 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 5 May 2020 11:05:26 +0000 (13:05 +0200)
Once the hfi_session_flush is issued by the vdec all queued
buffers to firmware should be returned to the v4l driver. Some
of those buffers are not processed at the time of flush command,
those buffers has filled len zero (no data). Catch that in
buffer_done callback and mark not filled capture buffers with
error state so that client can discard them.

Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/qcom/venus/vdec.c

index 7d093ac..5823537 100644 (file)
@@ -1241,6 +1241,9 @@ static void vdec_buf_done(struct venus_inst *inst, unsigned int buf_type,
                        if (inst->codec_state == VENUS_DEC_STATE_DRAIN)
                                inst->codec_state = VENUS_DEC_STATE_STOPPED;
                }
+
+               if (!bytesused)
+                       state = VB2_BUF_STATE_ERROR;
        } else {
                vbuf->sequence = inst->sequence_out++;
        }