summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authoruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-19 06:20:47 +0000
committeruau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-02-19 06:20:47 +0000
commit7ac889b79642ae4cc7e644b46510f8d7762988bf (patch)
treeee23080b549a9c9ef64ba723a0e3239a379be62b /input
parenta526b66d15b7645a602a29f8c228354906020fb2 (diff)
downloadmpv-7ac889b79642ae4cc7e644b46510f8d7762988bf.tar.bz2
mpv-7ac889b79642ae4cc7e644b46510f8d7762988bf.tar.xz
Remove remnants of the nonfunctional "grab_frames" command.
The command has been a no-op for years. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22273 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r--input/input.c1
-rw-r--r--input/input.h2
2 files changed, 1 insertions, 2 deletions
diff --git a/input/input.c b/input/input.c
index 23346bcd49..1f04273e31 100644
--- a/input/input.c
+++ b/input/input.c
@@ -62,7 +62,6 @@ static mp_cmd_t mp_cmds[] = {
{ MP_CMD_QUIT, "quit", 0, { {MP_CMD_ARG_INT,{0}}, {-1,{0}} } },
{ MP_CMD_PAUSE, "pause", 0, { {-1,{0}} } },
{ MP_CMD_FRAME_STEP, "frame_step", 0, { {-1,{0}} } },
- { MP_CMD_GRAB_FRAMES, "grab_frames",0, { {-1,{0}} } },
{ MP_CMD_PLAY_TREE_STEP, "pt_step",1, { { MP_CMD_ARG_INT ,{0}}, { MP_CMD_ARG_INT ,{0}}, {-1,{0}} } },
{ MP_CMD_PLAY_TREE_UP_STEP, "pt_up_step",1, { { MP_CMD_ARG_INT,{0} }, { MP_CMD_ARG_INT ,{0}}, {-1,{0}} } },
{ MP_CMD_PLAY_ALT_SRC_STEP, "alt_src_step",1, { { MP_CMD_ARG_INT,{0} }, {-1,{0}} } },
diff --git a/input/input.h b/input/input.h
index 6a5565dd25..86706e6be4 100644
--- a/input/input.h
+++ b/input/input.h
@@ -3,7 +3,7 @@
#define MP_CMD_AUDIO_DELAY 1
#define MP_CMD_QUIT 2
#define MP_CMD_PAUSE 3
-#define MP_CMD_GRAB_FRAMES 4
+// #define MP_CMD_GRAB_FRAMES 4 // was a no-op command for years
#define MP_CMD_PLAY_TREE_STEP 5
#define MP_CMD_PLAY_TREE_UP_STEP 6
#define MP_CMD_PLAY_ALT_SRC_STEP 7