mirror of https://github.com/mpv-player/mpv
Switch audio delay keys to something more sane (+ to increase, - to decrease)
that happens to also match the documentation. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18101 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
480c621a2b
commit
ce91ea74ce
|
@ -14,8 +14,8 @@ DOWN seek -60
|
|||
UP seek +60
|
||||
PGUP seek 600
|
||||
PGDWN seek -600
|
||||
- audio_delay 0.100
|
||||
+ audio_delay -0.100
|
||||
+ audio_delay 0.100
|
||||
- audio_delay -0.100
|
||||
[ speed_mult 0.9091 # scale playback speed
|
||||
] speed_mult 1.1
|
||||
{ speed_mult 0.5
|
||||
|
|
|
@ -304,8 +304,8 @@ static mp_cmd_bind_t def_cmd_binds[] = {
|
|||
{ { KEY_DOWN, 0 }, "seek -60" },
|
||||
{ { KEY_PAGE_UP, 0 }, "seek 600" },
|
||||
{ { KEY_PAGE_DOWN, 0 }, "seek -600" },
|
||||
{ { '-', 0 }, "audio_delay 0.100" },
|
||||
{ { '+', 0 }, "audio_delay -0.100" },
|
||||
{ { '+', 0 }, "audio_delay 0.100" },
|
||||
{ { '-', 0 }, "audio_delay -0.100" },
|
||||
{ { '[', 0 }, "speed_mult 0.9091" },
|
||||
{ { ']', 0 }, "speed_mult 1.1" },
|
||||
{ { '{', 0 }, "speed_mult 0.5" },
|
||||
|
|
Loading…
Reference in New Issue