diff options
author | Mike Isely <isely@pobox.com> | 2006-12-27 21:36:33 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-02-21 10:34:34 -0500 |
commit | 139eecf94cf5ab1f9749874cd362db5bff7dc09c (patch) | |
tree | 4c756964c2cd64110e1d75a8d701f1e888b375e9 /drivers/media/video | |
parent | 62f5fdace7774a45e75e4d651237e7e1e8f05327 (diff) |
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: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-hdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/drivers/media/video/pvrusb2/pvrusb2-hdw.c index 38e165913dd6..bb4c5150a4df 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-hdw.c +++ b/drivers/media/video/pvrusb2/pvrusb2-hdw.c | |||
@@ -770,7 +770,7 @@ static const struct pvr2_ctl_info control_defs[] = { | |||
770 | .v4l_id = V4L2_CID_AUDIO_VOLUME, | 770 | .v4l_id = V4L2_CID_AUDIO_VOLUME, |
771 | .desc = "Volume", | 771 | .desc = "Volume", |
772 | .name = "volume", | 772 | .name = "volume", |
773 | .default_value = 65535, | 773 | .default_value = 62000, |
774 | DEFREF(volume), | 774 | DEFREF(volume), |
775 | DEFINT(0,65535), | 775 | DEFINT(0,65535), |
776 | },{ | 776 | },{ |