# HG changeset patch # User reimar # Date 1097767990 0 # Node ID 86f21713c356fcaf83b81f21dd64d273fe0fd90f # Parent a22f1b86ec0f5f96a34f7ca2c18d4b03ae9f573b Make '.' key default for framestepping diff -r a22f1b86ec0f -r 86f21713c356 DOCS/man/en/mplayer.1 --- 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). diff -r a22f1b86ec0f -r 86f21713c356 etc/input.conf --- 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 diff -r a22f1b86ec0f -r 86f21713c356 input/input.c --- 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" },