Commit 139eecf9 authored by Mike Isely's avatar Mike Isely Committed by Mauro Carvalho Chehab

V4L/DVB (5053): Pvrusb2: Change default volume to something sane

The default volume of 65535 is too high.  Make is something smaller.
Note that this _only_ changes the default value.  Specifically, there
are no scaling or other more intrusive changes here.  I'm just sick of
constantly having to reduce the volume every time I plug in and test
the device!  (And unfortunately we can't do a better fix like scaling
the volume so that 65535 makes sense because doing so will screw up
any app - like MythTV - which expects the old scaling.)  Too bad V4L
controls don't have better defined ranges.
Signed-off-by: default avatarMike Isely <isely@pobox.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 62f5fdac
...@@ -770,7 +770,7 @@ static const struct pvr2_ctl_info control_defs[] = { ...@@ -770,7 +770,7 @@ static const struct pvr2_ctl_info control_defs[] = {
.v4l_id = V4L2_CID_AUDIO_VOLUME, .v4l_id = V4L2_CID_AUDIO_VOLUME,
.desc = "Volume", .desc = "Volume",
.name = "volume", .name = "volume",
.default_value = 65535, .default_value = 62000,
DEFREF(volume), DEFREF(volume),
DEFINT(0,65535), DEFINT(0,65535),
},{ },{
......
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