Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72d44be3 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: vidc: Treat use-ltr control as bitmask"

parents e155d2b2 bd744f97
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1868,7 +1868,7 @@ int msm_venc_s_ctrl(struct msm_vidc_inst *inst, struct v4l2_ctrl *ctrl)
		break;
	case V4L2_CID_MPEG_VIDC_VIDEO_USELTRFRAME:
		property_id = HAL_CONFIG_VENC_USELTRFRAME;
		use_ltr.ref_ltr = 0x1 << ctrl->val;
		use_ltr.ref_ltr = ctrl->val;
		use_ltr.use_constraint = false;
		use_ltr.frames = 0;
		pdata = &use_ltr;