diff options
author | Mike Isely <isely@pobox.com> | 2006-12-27 20:36:33 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-12-27 20:36:33 -0600 |
commit | 7a9478aa21d5225838c3eb7db1bd918fb7a7e56b (patch) | |
tree | f76b4ecddbf8de5744940d0e0ccab28858277573 | |
parent | b8041f5d66d235099f174668003ef0e99aa499f1 (diff) | |
download | mediapointer-dvb-s2-7a9478aa21d5225838c3eb7db1bd918fb7a7e56b.tar.gz mediapointer-dvb-s2-7a9478aa21d5225838c3eb7db1bd918fb7a7e56b.tar.bz2 |
pvrusb2: Change default volume to something sane
From: Mike Isely <isely@pobox.com>
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>
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c index 47775be0b..0c6fe310b 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw.c @@ -771,7 +771,7 @@ static const struct pvr2_ctl_info control_defs[] = { .v4l_id = V4L2_CID_AUDIO_VOLUME, .desc = "Volume", .name = "volume", - .default_value = 65535, + .default_value = 62000, DEFREF(volume), DEFINT(0,65535), },{ |