[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-id: <085901cfd736$6ae349c0$40a9dd40$%debski@samsung.com>
Date: Tue, 23 Sep 2014 15:58:12 +0200
From: Kamil Debski <k.debski@...sung.com>
To: 'Sjoerd Simons' <sjoerd.simons@...labora.co.uk>,
'Kyungmin Park' <kyungmin.park@...sung.com>,
'Arun Kumar K' <arun.kk@...sung.com>
Cc: 'Mauro Carvalho Chehab' <m.chehab@...sung.com>,
linux-arm-kernel@...ts.infradead.org, linux-media@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-samsung-soc@...r.kernel.org,
'Daniel Drake' <drake@...lessm.com>
Subject: RE: [PATCH] [media] s5p-mfc: Use decode status instead of display
status on MFCv5
Hi Sjoerd,
> From: linux-media-owner@...r.kernel.org [mailto:linux-media-
> owner@...r.kernel.org] On Behalf Of Sjoerd Simons
> Sent: Monday, September 22, 2014 2:52 PM
> To: Kyungmin Park; Kamil Debski; Arun Kumar K
> Cc: Mauro Carvalho Chehab; linux-arm-kernel@...ts.infradead.org; linux-
> media@...r.kernel.org; linux-kernel@...r.kernel.org; linux-samsung-
> soc@...r.kernel.org; Daniel Drake; Sjoerd Simons
> Subject: [PATCH] [media] s5p-mfc: Use decode status instead of display
> status on MFCv5
>
> Commit 90c0ae50097 changed how the frame_type of a decoded frame
> gets determined, by switching from the get_dec_frame_type to
> get_disp_frame_type operation. Unfortunately it seems that on MFC v5
> the
> result of get_disp_frame_type is always 0 (no display) when decoding
> (tested with H264), resulting in no frame ever being output from the
> decoder.
Could you tell me which firmware version do you use (date)?
Best wishes,
--
Kamil Debski
Samsung R&D Institute Poland
> This patch reverts MFC v5 to the previous behaviour while keeping the
> new behaviour for v6 and up.
>
> Signed-off-by: Sjoerd Simons <sjoerd.simons@...labora.co.uk>
> ---
> drivers/media/platform/s5p-mfc/s5p_mfc.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc.c
> b/drivers/media/platform/s5p-mfc/s5p_mfc.c
> index d35b041..27ca9d0 100644
> --- a/drivers/media/platform/s5p-mfc/s5p_mfc.c
> +++ b/drivers/media/platform/s5p-mfc/s5p_mfc.c
> @@ -264,7 +264,12 @@ static void s5p_mfc_handle_frame_new(struct
> s5p_mfc_ctx *ctx, unsigned int err)
> unsigned int frame_type;
>
> dspl_y_addr = s5p_mfc_hw_call(dev->mfc_ops, get_dspl_y_adr, dev);
> - frame_type = s5p_mfc_hw_call(dev->mfc_ops, get_disp_frame_type,
> ctx);
> + if (IS_MFCV6_PLUS(dev))
> + frame_type = s5p_mfc_hw_call(dev->mfc_ops,
> + get_disp_frame_type, ctx);
> + else
> + frame_type = s5p_mfc_hw_call(dev->mfc_ops,
> + get_dec_frame_type, dev);
>
> /* If frame is same as previous then skip and do not dequeue */
> if (frame_type == S5P_FIMV_DECODE_FRAME_SKIPPED) {
> --
> 2.1.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media"
> in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists