diff options
author | Alexander Preisinger <alexander.preisinger@gmail.com> | 2013-07-25 18:08:57 +0200 |
---|---|---|
committer | Alexander Preisinger <alexander.preisinger@gmail.com> | 2013-08-07 22:15:39 +0200 |
commit | 023e5ccd02609c8a2fdcf63ee0a87025beeb79f0 (patch) | |
tree | 4846330cd6d36a8d353f2c287fb061e0de3e05bb /etc | |
parent | 406241005e3d897b30a5b168a16ad61f0996c43c (diff) | |
download | mpv-023e5ccd02609c8a2fdcf63ee0a87025beeb79f0.tar.bz2 mpv-023e5ccd02609c8a2fdcf63ee0a87025beeb79f0.tar.xz |
input: add support for precise scroll axes
Support horizontal and vertical axes of input devices.
If the input device support precise scrolling with an input value then it
should first be scaled to a standard multiplier, where 1.0 is the default.
The multiplier will then applied to the following commands if possible:
* MP_CMD_SEEK
* MP_CMD_SPEED_MULT
* MP_CMD_ADD
All other commands will triggered on every axis event, without change the
values specified in the config file.
Diffstat (limited to 'etc')
-rw-r--r-- | etc/input.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/etc/input.conf b/etc/input.conf index 91382d58a5..f2f7d8bedb 100644 --- a/etc/input.conf +++ b/etc/input.conf @@ -35,6 +35,12 @@ MOUSE_BTN4 seek -10 MOUSE_BTN5 add volume 1 MOUSE_BTN6 add volume -1 +# Mouse wheels, touchpad or other input devices that have axes +AXIS_UP seek 10 +AXIS_DOWN seek -10 +AXIS_LEFT speed_mult 0.5 +AXIS_RIGHT speed_mult 1.5 + # Seek units are in seconds, but note that these are limited by keyframes RIGHT seek 10 LEFT seek -10 |