changeset 13642:86f21713c356

Make '.' key default for framestepping
author reimar
date Thu, 14 Oct 2004 15:33:10 +0000
parents a22f1b86ec0f
children 666e4819ab12
files DOCS/man/en/mplayer.1 etc/input.conf input/input.c
diffstat 3 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/man/en/mplayer.1	Thu Oct 14 15:09:35 2004 +0000
+++ b/DOCS/man/en/mplayer.1	Thu Oct 14 15:33:10 2004 +0000
@@ -227,7 +227,7 @@
 next/\:previous alternative source (ASX playlist only)
 .IPs "p / SPACE"
 Pause movie (any key unpauses).
-.IPs "s"
+.IPs "."
 Step forward.
 Pressing once will pause movie, every consecutive press will play one frame
 and then go into pause mode again (any other key unpauses).
--- a/etc/input.conf	Thu Oct 14 15:09:35 2004 +0000
+++ b/etc/input.conf	Thu Oct 14 15:33:10 2004 +0000
@@ -19,7 +19,7 @@
 ESC quit
 ENTER pt_step 1 1
 p pause
-s frame_step
+. frame_step
 SPACE pause
 HOME pt_up_step 1
 END pt_up_step -1
--- a/input/input.c	Thu Oct 14 15:09:35 2004 +0000
+++ b/input/input.c	Thu Oct 14 15:33:10 2004 +0000
@@ -276,6 +276,7 @@
   { { 'p', 0 }, "pause" },
 #endif
   { { ' ', 0 }, "pause" },
+  { { '.', 0 }, "frame_step" },
   { { KEY_HOME, 0 }, "pt_up_step 1" },
   { { KEY_END, 0 }, "pt_up_step -1" },
   { { '>', 0 }, "pt_step 1" },