[media] coda: fix fill bitstream errors in nonstreaming case
authorPhilipp Zabel <philipp.zabel@gmail.com>
Tue, 24 Mar 2015 17:30:57 +0000 (14:30 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 10 Apr 2015 13:11:05 +0000 (10:11 -0300)
When queueing a buffer into the bitstream fails, it has to be requeued
in the videobuf2 queue before streaming starts, but while streaming it
should be returned to userspace with an error.

Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com>
Signed-off-by: Kamil Debski <k.debski@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/coda/coda-bit.c
drivers/media/platform/coda/coda-common.c
drivers/media/platform/coda/coda.h

index 23041587c898ff0ca89cbe3cdeaa3bb8337594de..d39789d59d1749d94ddc4eb5add47fdf57f36b52 100644 (file)
@@ -218,7 +218,7 @@ static bool coda_bitstream_try_queue(struct coda_ctx *ctx,
        return true;
 }
 
-void coda_fill_bitstream(struct coda_ctx *ctx)
+void coda_fill_bitstream(struct coda_ctx *ctx, bool streaming)
 {
        struct vb2_buffer *src_buf;
        struct coda_buffer_meta *meta;
@@ -239,9 +239,12 @@ void coda_fill_bitstream(struct coda_ctx *ctx)
                if (ctx->codec->src_fourcc == V4L2_PIX_FMT_JPEG &&
                    !coda_jpeg_check_buffer(ctx, src_buf)) {
                        v4l2_err(&ctx->dev->v4l2_dev,
-                                "dropping invalid JPEG frame\n");
+                                "dropping invalid JPEG frame %d\n",
+                                ctx->qsequence);
                        src_buf = v4l2_m2m_src_buf_remove(ctx->fh.m2m_ctx);
-                       v4l2_m2m_buf_done(src_buf, VB2_BUF_STATE_ERROR);
+                       v4l2_m2m_buf_done(src_buf, streaming ?
+                                         VB2_BUF_STATE_ERROR :
+                                         VB2_BUF_STATE_QUEUED);
                        continue;
                }
 
@@ -1648,7 +1651,7 @@ static int coda_prepare_decode(struct coda_ctx *ctx)
 
        /* Try to copy source buffer contents into the bitstream ringbuffer */
        mutex_lock(&ctx->bitstream_mutex);
-       coda_fill_bitstream(ctx);
+       coda_fill_bitstream(ctx, true);
        mutex_unlock(&ctx->bitstream_mutex);
 
        if (coda_get_bitstream_payload(ctx) < 512 &&
index c8811b7fa13776ace5c52e7816c9cd511e7b39d9..8e6fe0200117f671eb223b3289c63d7ee0073651 100644 (file)
@@ -1192,7 +1192,7 @@ static void coda_buf_queue(struct vb2_buffer *vb)
                mutex_lock(&ctx->bitstream_mutex);
                v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
                if (vb2_is_streaming(vb->vb2_queue))
-                       coda_fill_bitstream(ctx);
+                       coda_fill_bitstream(ctx, true);
                mutex_unlock(&ctx->bitstream_mutex);
        } else {
                v4l2_m2m_buf_queue(ctx->fh.m2m_ctx, vb);
@@ -1252,9 +1252,9 @@ static int coda_start_streaming(struct vb2_queue *q, unsigned int count)
                if (q_data_src->fourcc == V4L2_PIX_FMT_H264 ||
                    (q_data_src->fourcc == V4L2_PIX_FMT_JPEG &&
                     ctx->dev->devtype->product == CODA_7541)) {
-                       /* copy the buffers that where queued before streamon */
+                       /* copy the buffers that were queued before streamon */
                        mutex_lock(&ctx->bitstream_mutex);
-                       coda_fill_bitstream(ctx);
+                       coda_fill_bitstream(ctx, false);
                        mutex_unlock(&ctx->bitstream_mutex);
 
                        if (coda_get_bitstream_payload(ctx) < 512) {
index 2b59e1660e5831d9771173839c5254c326ce739a..970f0b345c4e5125e6f7ef428aeae7039aade97c 100644 (file)
@@ -256,7 +256,7 @@ int coda_decoder_queue_init(void *priv, struct vb2_queue *src_vq,
 
 int coda_hw_reset(struct coda_ctx *ctx);
 
-void coda_fill_bitstream(struct coda_ctx *ctx);
+void coda_fill_bitstream(struct coda_ctx *ctx, bool streaming);
 
 void coda_set_gdi_regs(struct coda_ctx *ctx);