V4L/DVB (3354): Fix maximum for the saturation and contrast controls.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Hans Verkuil 2006-02-27 00:08:20 -03:00 committed by Mauro Carvalho Chehab
parent 27b547c3a9
commit 2175771e15
2 changed files with 4 additions and 4 deletions

View File

@ -567,7 +567,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER,
.name = "Contrast",
.minimum = 0,
.maximum = 255,
.maximum = 127,
.step = 1,
.default_value = 64,
.flags = 0,
@ -576,7 +576,7 @@ static struct v4l2_queryctrl cx25840_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER,
.name = "Saturation",
.minimum = 0,
.maximum = 255,
.maximum = 127,
.step = 1,
.default_value = 64,
.flags = 0,

View File

@ -1027,7 +1027,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER,
.name = "Contrast",
.minimum = 0,
.maximum = 255,
.maximum = 127,
.step = 1,
.default_value = 64,
.flags = 0,
@ -1036,7 +1036,7 @@ static struct v4l2_queryctrl saa7115_qctrl[] = {
.type = V4L2_CTRL_TYPE_INTEGER,
.name = "Saturation",
.minimum = 0,
.maximum = 255,
.maximum = 127,
.step = 1,
.default_value = 64,
.flags = 0,