Commit f100ce3b authored by Benjamin Gaignard's avatar Benjamin Gaignard Committed by Hans Verkuil

media: verisilicon: Fix crash when probing encoder

ctx->vpu_dst_fmt is no more initialized before calling hantro_try_fmt()
so assigne it to vpu_fmt led to crash the kernel.
Like for decoder case use 'fmt' as format for encoder and clean up
the code.
Signed-off-by: default avatarBenjamin Gaignard <benjamin.gaignard@collabora.com>
Tested-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Fixes: db6f68b5 ("media: verisilicon: Do not set context src/dst formats in reset functions")
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent e18a7e9a
...@@ -275,7 +275,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx, ...@@ -275,7 +275,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx,
struct v4l2_pix_format_mplane *pix_mp, struct v4l2_pix_format_mplane *pix_mp,
enum v4l2_buf_type type) enum v4l2_buf_type type)
{ {
const struct hantro_fmt *fmt, *vpu_fmt; const struct hantro_fmt *fmt;
bool capture = V4L2_TYPE_IS_CAPTURE(type); bool capture = V4L2_TYPE_IS_CAPTURE(type);
bool coded; bool coded;
...@@ -295,11 +295,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx, ...@@ -295,11 +295,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx,
if (coded) { if (coded) {
pix_mp->num_planes = 1; pix_mp->num_planes = 1;
vpu_fmt = fmt; } else if (!ctx->is_encoder) {
} else if (ctx->is_encoder) {
vpu_fmt = ctx->vpu_dst_fmt;
} else {
vpu_fmt = fmt;
/* /*
* Width/height on the CAPTURE end of a decoder are ignored and * Width/height on the CAPTURE end of a decoder are ignored and
* replaced by the OUTPUT ones. * replaced by the OUTPUT ones.
...@@ -311,7 +307,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx, ...@@ -311,7 +307,7 @@ static int hantro_try_fmt(const struct hantro_ctx *ctx,
pix_mp->field = V4L2_FIELD_NONE; pix_mp->field = V4L2_FIELD_NONE;
v4l2_apply_frmsize_constraints(&pix_mp->width, &pix_mp->height, v4l2_apply_frmsize_constraints(&pix_mp->width, &pix_mp->height,
&vpu_fmt->frmsize); &fmt->frmsize);
if (!coded) { if (!coded) {
/* Fill remaining fields */ /* Fill remaining fields */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment