diff options
author | wm4 <wm4@nowhere> | 2015-08-04 01:04:26 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-08-04 01:04:26 +0200 |
commit | aca591ded3f7600882b57ec4526bc49b1377f203 (patch) | |
tree | 3db2df67a2d143e361f978ff79c84e68797269cb | |
parent | 75b1d5043fdfe672417ef8d58f8fa87672aadde9 (diff) | |
download | mpv-aca591ded3f7600882b57ec4526bc49b1377f203.tar.bz2 mpv-aca591ded3f7600882b57ec4526bc49b1377f203.tar.xz |
input.conf: remap d/D keys
Drop d for toggling framedrop. Toggling this is way too special to be at
such a prominent place, and in fact I believe toggling it is pointless.
Remap deinterlacing from D to d. It's relatively useful and non-
destructive.
As suggested in #973 (almost).
-rw-r--r-- | DOCS/man/mpv.rst | 6 | ||||
-rw-r--r-- | etc/input.conf | 3 | ||||
-rw-r--r-- | etc/restore-old-bindings.conf | 2 |
3 files changed, 4 insertions, 7 deletions
diff --git a/DOCS/man/mpv.rst b/DOCS/man/mpv.rst index 84d72b070e..97c70e910b 100644 --- a/DOCS/man/mpv.rst +++ b/DOCS/man/mpv.rst @@ -118,10 +118,6 @@ o (also P) O Toggle OSD states between normal and playback time/duration. -d - Toggle frame dropping states: none / skip display / skip decoding (see - ``--framedrop``). - v Toggle subtitle visibility. @@ -175,7 +171,7 @@ Shift+PGUP and Shift+PGDWN Seek backward or forward by 10 minutes. (This used to be mapped to PGUP/PGDWN without Shift.) -D +d Activate/deactivate deinterlacer. A diff --git a/etc/input.conf b/etc/input.conf index b6cc8e76d5..d9c995889a 100644 --- a/etc/input.conf +++ b/etc/input.conf @@ -100,9 +100,8 @@ #6 add gamma 1 #7 add saturation -1 #8 add saturation 1 -#d cycle framedrop # cycle through framedrop modes # toggle deinterlacer (automatically inserts or removes required filter) -#D cycle deinterlace +#d cycle deinterlace #r add sub-pos -1 # move subtitles up #t add sub-pos +1 # down #v cycle sub-visibility diff --git a/etc/restore-old-bindings.conf b/etc/restore-old-bindings.conf index a9b34d1734..e8499b5ec1 100644 --- a/etc/restore-old-bindings.conf +++ b/etc/restore-old-bindings.conf @@ -12,6 +12,8 @@ # changed in mpv 0.10.0 O osd +D cycle deinterlace +d cycle framedrop # changed in mpv 0.7.0 |