diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-15 14:24:36 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-04-15 14:24:36 +0000 |
commit | ce91ea74ce61e7b2e7e14723a30446d6c4a9ccb1 (patch) | |
tree | c788264f2ee62934fe5d5e07f0f4e20564d4c589 | |
parent | 480c621a2b1676a12dfe9b174aad2edecd09b894 (diff) |
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
-rw-r--r-- | etc/input.conf | 4 | ||||
-rw-r--r-- | input/input.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/etc/input.conf b/etc/input.conf index 2b57dc5242..88e6e7c6cb 100644 --- a/etc/input.conf +++ b/etc/input.conf @@ -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 diff --git a/input/input.c b/input/input.c index c416f840b5..694ba25a1e 100644 --- a/input/input.c +++ b/input/input.c @@ -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" }, |