All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s5p-mfc: fix state check from encoder queue_setup
@ 2015-05-13  7:25 Seung-Woo Kim
  2015-08-18 13:31 ` Andrzej Hajda
  0 siblings, 1 reply; 3+ messages in thread
From: Seung-Woo Kim @ 2015-05-13  7:25 UTC (permalink / raw)
  To: linux-media, linux-samsung-soc, k.debski, mchehab
  Cc: m.szyprowski, s.nawrocki, sw0312.kim

MFCINST_GOT_INST state is set to encoder context with set_format
only for catpure buffer. In queue_setup of encoder called during
reqbufs, it is checked MFCINST_GOT_INST state for both capture
and output buffer. So this patch fixes to encoder to check
MFCINST_GOT_INST state only for capture buffer from queue_setup.

Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
---
 drivers/media/platform/s5p-mfc/s5p_mfc_enc.c |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
index e65993f..2e57e9f 100644
--- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
+++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
@@ -1819,11 +1819,12 @@ static int s5p_mfc_queue_setup(struct vb2_queue *vq,
 	struct s5p_mfc_ctx *ctx = fh_to_ctx(vq->drv_priv);
 	struct s5p_mfc_dev *dev = ctx->dev;
 
-	if (ctx->state != MFCINST_GOT_INST) {
-		mfc_err("inavlid state: %d\n", ctx->state);
-		return -EINVAL;
-	}
 	if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
+		if (ctx->state != MFCINST_GOT_INST) {
+			mfc_err("inavlid state: %d\n", ctx->state);
+			return -EINVAL;
+		}
+
 		if (ctx->dst_fmt)
 			*plane_count = ctx->dst_fmt->num_planes;
 		else
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] s5p-mfc: fix state check from encoder queue_setup
  2015-05-13  7:25 [PATCH] s5p-mfc: fix state check from encoder queue_setup Seung-Woo Kim
@ 2015-08-18 13:31 ` Andrzej Hajda
  2015-08-20 10:17   ` Kamil Debski
  0 siblings, 1 reply; 3+ messages in thread
From: Andrzej Hajda @ 2015-08-18 13:31 UTC (permalink / raw)
  To: Seung-Woo Kim, linux-media, linux-samsung-soc, k.debski, mchehab
  Cc: m.szyprowski, s.nawrocki

On 05/13/2015 09:25 AM, Seung-Woo Kim wrote:
> MFCINST_GOT_INST state is set to encoder context with set_format
> only for catpure buffer. In queue_setup of encoder called during
> reqbufs, it is checked MFCINST_GOT_INST state for both capture
> and output buffer. So this patch fixes to encoder to check
> MFCINST_GOT_INST state only for capture buffer from queue_setup.
> 
> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>

Looks OK.

Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

Regards
Andrzej


> ---
>  drivers/media/platform/s5p-mfc/s5p_mfc_enc.c |    9 +++++----
>  1 files changed, 5 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> index e65993f..2e57e9f 100644
> --- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> +++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> @@ -1819,11 +1819,12 @@ static int s5p_mfc_queue_setup(struct vb2_queue *vq,
>  	struct s5p_mfc_ctx *ctx = fh_to_ctx(vq->drv_priv);
>  	struct s5p_mfc_dev *dev = ctx->dev;
>  
> -	if (ctx->state != MFCINST_GOT_INST) {
> -		mfc_err("inavlid state: %d\n", ctx->state);
> -		return -EINVAL;
> -	}
>  	if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
> +		if (ctx->state != MFCINST_GOT_INST) {
> +			mfc_err("inavlid state: %d\n", ctx->state);
> +			return -EINVAL;
> +		}
> +
>  		if (ctx->dst_fmt)
>  			*plane_count = ctx->dst_fmt->num_planes;
>  		else
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] s5p-mfc: fix state check from encoder queue_setup
  2015-08-18 13:31 ` Andrzej Hajda
@ 2015-08-20 10:17   ` Kamil Debski
  0 siblings, 0 replies; 3+ messages in thread
From: Kamil Debski @ 2015-08-20 10:17 UTC (permalink / raw)
  To: 'Andrzej Hajda', 'Seung-Woo Kim', linux-media,
	linux-samsung-soc, mchehab
  Cc: m.szyprowski, s.nawrocki

Hi,

> From: Andrzej Hajda [mailto:a.hajda@samsung.com]
> Sent: Tuesday, August 18, 2015 3:32 PM
> 
> On 05/13/2015 09:25 AM, Seung-Woo Kim wrote:
> > MFCINST_GOT_INST state is set to encoder context with set_format only
> > for catpure buffer. In queue_setup of encoder called during reqbufs,
> > it is checked MFCINST_GOT_INST state for both capture and output
> > buffer. So this patch fixes to encoder to check MFCINST_GOT_INST state
> > only for capture buffer from queue_setup.
> >
> > Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
> 
> Looks OK.
> 
> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

Acked-by: Kamil Debski <k.debski@samsung.com>

> 
> Regards
> Andrzej

Best wishes,
Kamil Debski

> 
> 
> > ---
> >  drivers/media/platform/s5p-mfc/s5p_mfc_enc.c |    9 +++++----
> >  1 files changed, 5 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> > b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> > index e65993f..2e57e9f 100644
> > --- a/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> > +++ b/drivers/media/platform/s5p-mfc/s5p_mfc_enc.c
> > @@ -1819,11 +1819,12 @@ static int s5p_mfc_queue_setup(struct
> vb2_queue *vq,
> >  	struct s5p_mfc_ctx *ctx = fh_to_ctx(vq->drv_priv);
> >  	struct s5p_mfc_dev *dev = ctx->dev;
> >
> > -	if (ctx->state != MFCINST_GOT_INST) {
> > -		mfc_err("inavlid state: %d\n", ctx->state);
> > -		return -EINVAL;
> > -	}
> >  	if (vq->type == V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE) {
> > +		if (ctx->state != MFCINST_GOT_INST) {
> > +			mfc_err("inavlid state: %d\n", ctx->state);
> > +			return -EINVAL;
> > +		}
> > +
> >  		if (ctx->dst_fmt)
> >  			*plane_count = ctx->dst_fmt->num_planes;
> >  		else
> >

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-08-20 10:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-13  7:25 [PATCH] s5p-mfc: fix state check from encoder queue_setup Seung-Woo Kim
2015-08-18 13:31 ` Andrzej Hajda
2015-08-20 10:17   ` Kamil Debski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.