Commit 61a70c97 authored by Stanimir Varbanov's avatar Stanimir Varbanov Committed by Mauro Carvalho Chehab

media: venus: venc_ctrls: Add default value for CLL info

Add default value for CLL info when creating compound control.
Signed-off-by: default avatarStanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 1d600444
...@@ -379,6 +379,7 @@ int venc_ctrl_init(struct venus_inst *inst) ...@@ -379,6 +379,7 @@ int venc_ctrl_init(struct venus_inst *inst)
{ 34000, 13250, 7500 }, { 34000, 13250, 7500 },
{ 16000, 34500, 3000 }, 15635, 16450, 10000000, 500, { 16000, 34500, 3000 }, 15635, 16450, 10000000, 500,
}; };
struct v4l2_ctrl_hdr10_cll_info p_hdr10_cll = { 1000, 400 };
ret = v4l2_ctrl_handler_init(&inst->ctrl_handler, 59); ret = v4l2_ctrl_handler_init(&inst->ctrl_handler, 59);
if (ret) if (ret)
...@@ -606,7 +607,7 @@ int venc_ctrl_init(struct venus_inst *inst) ...@@ -606,7 +607,7 @@ int venc_ctrl_init(struct venus_inst *inst)
v4l2_ctrl_new_std_compound(&inst->ctrl_handler, &venc_ctrl_ops, v4l2_ctrl_new_std_compound(&inst->ctrl_handler, &venc_ctrl_ops,
V4L2_CID_COLORIMETRY_HDR10_CLL_INFO, V4L2_CID_COLORIMETRY_HDR10_CLL_INFO,
v4l2_ctrl_ptr_create(NULL)); v4l2_ctrl_ptr_create(&p_hdr10_cll));
v4l2_ctrl_new_std_compound(&inst->ctrl_handler, &venc_ctrl_ops, v4l2_ctrl_new_std_compound(&inst->ctrl_handler, &venc_ctrl_ops,
V4L2_CID_COLORIMETRY_HDR10_MASTERING_DISPLAY, V4L2_CID_COLORIMETRY_HDR10_MASTERING_DISPLAY,
......
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