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

Commit 7855bff2 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: Correct qp min/max for VP8 control"

parents 232841a6 7b1f9405
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -527,9 +527,9 @@ static struct msm_vidc_ctrl msm_venc_ctrls[] = {
		.id = V4L2_CID_MPEG_VIDC_VIDEO_VP8_MAX_QP,
		.name = "VP8 Maximum QP",
		.type = V4L2_CTRL_TYPE_INTEGER,
		.minimum = 0x010101,
		.maximum = 0x808080,
		.default_value = 0x808080,
		.minimum = 1,
		.maximum = 128,
		.default_value = 1,

		.step = 1,
	},