Commit 54676d5f authored by Daniel Almeida's avatar Daniel Almeida Committed by Mauro Carvalho Chehab

media: rkvdec: Do not require all controls to be present in every request

According to the v4l2 api, it is allowed to skip
setting a control if its contents haven't changed for performance
reasons: userspace should only update the controls that changed from
last frame rather then updating them all. Still some ancient code
that checks for mandatory controls has been left in this driver.

Remove it.

Fixes: cd33c830 ("media: rkvdec: Add the rkvdec driver")
Signed-off-by: default avatarDaniel Almeida <daniel.almeida@collabora.com>
Reviewed-by: default avatarEzequiel Garcia <ezequiel@collabora.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 4cd15d84
......@@ -55,16 +55,13 @@ static const struct v4l2_ctrl_ops rkvdec_ctrl_ops = {
static const struct rkvdec_ctrl_desc rkvdec_h264_ctrl_descs[] = {
{
.mandatory = true,
.cfg.id = V4L2_CID_STATELESS_H264_DECODE_PARAMS,
},
{
.mandatory = true,
.cfg.id = V4L2_CID_STATELESS_H264_SPS,
.cfg.ops = &rkvdec_ctrl_ops,
},
{
.mandatory = true,
.cfg.id = V4L2_CID_STATELESS_H264_PPS,
},
{
......@@ -585,25 +582,7 @@ static const struct vb2_ops rkvdec_queue_ops = {
static int rkvdec_request_validate(struct media_request *req)
{
struct media_request_object *obj;
const struct rkvdec_ctrls *ctrls;
struct v4l2_ctrl_handler *hdl;
struct rkvdec_ctx *ctx = NULL;
unsigned int count, i;
int ret;
list_for_each_entry(obj, &req->objects, list) {
if (vb2_request_object_is_buffer(obj)) {
struct vb2_buffer *vb;
vb = container_of(obj, struct vb2_buffer, req_obj);
ctx = vb2_get_drv_priv(vb->vb2_queue);
break;
}
}
if (!ctx)
return -EINVAL;
unsigned int count;
count = vb2_request_buffer_cnt(req);
if (!count)
......@@ -611,31 +590,6 @@ static int rkvdec_request_validate(struct media_request *req)
else if (count > 1)
return -EINVAL;
hdl = v4l2_ctrl_request_hdl_find(req, &ctx->ctrl_hdl);
if (!hdl)
return -ENOENT;
ret = 0;
ctrls = ctx->coded_fmt_desc->ctrls;
for (i = 0; ctrls && i < ctrls->num_ctrls; i++) {
u32 id = ctrls->ctrls[i].cfg.id;
struct v4l2_ctrl *ctrl;
if (!ctrls->ctrls[i].mandatory)
continue;
ctrl = v4l2_ctrl_request_hdl_ctrl_find(hdl, id);
if (!ctrl) {
ret = -ENOENT;
break;
}
}
v4l2_ctrl_request_hdl_put(hdl);
if (ret)
return ret;
return vb2_request_validate(req);
}
......
......@@ -25,7 +25,6 @@
struct rkvdec_ctx;
struct rkvdec_ctrl_desc {
u32 mandatory : 1;
struct v4l2_ctrl_config cfg;
};
......
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