summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-01 17:07:35 +0200
committerwm4 <wm4@nowhere>2012-08-01 17:07:35 +0200
commitc92538dfaa5eb7e9b2773f158cbb310545116abe (patch)
tree4b1ab99a17cbead6ff1b7bf9714642540cd66ce4 /input
parent7175f178de72bb4f31cacd79b395a14beaf2f65a (diff)
downloadmpv-c92538dfaa5eb7e9b2773f158cbb310545116abe.tar.bz2
mpv-c92538dfaa5eb7e9b2773f158cbb310545116abe.tar.xz
Remove dead code
This was done with the help of callcatcher [1]. Only functions which are statically known to be unused are removed. Some unused functions are not removed yet, because they might be needed in the near future (such as open_output_stream for the encode branch). There is one user visible change: the --subcc option did nothing, and is removed with this commit. [1] http://www.skynet.ie/~caolan/Packages/callcatcher.html
Diffstat (limited to 'input')
-rw-r--r--input/input.c24
-rw-r--r--input/input.h6
2 files changed, 0 insertions, 30 deletions
diff --git a/input/input.c b/input/input.c
index 73e48436dd..e162572bed 100644
--- a/input/input.c
+++ b/input/input.c
@@ -859,30 +859,6 @@ int mp_input_add_key_fd(struct input_ctx *ictx, int fd, int select,
return 1;
}
-int mp_input_parse_and_queue_cmds(struct input_ctx *ictx, const char *str)
-{
- int cmd_num = 0;
-
- while (*str == '\n' || *str == '\r' || *str == ' ')
- ++str;
- while (*str) {
- mp_cmd_t *cmd;
- size_t len = strcspn(str, "\r\n");
- char *cmdbuf = talloc_size(NULL, len + 1);
- av_strlcpy(cmdbuf, str, len + 1);
- cmd = mp_input_parse_cmd(cmdbuf);
- if (cmd) {
- mp_input_queue_cmd(ictx, cmd);
- ++cmd_num;
- }
- str += len;
- while (*str == '\n' || *str == '\r' || *str == ' ')
- ++str;
- talloc_free(cmdbuf);
- }
- return cmd_num;
-}
-
mp_cmd_t *mp_input_parse_cmd(char *str)
{
int i, l;
diff --git a/input/input.h b/input/input.h
index a4d9b8dab6..9092e2226d 100644
--- a/input/input.h
+++ b/input/input.h
@@ -252,12 +252,6 @@ struct mp_cmd *mp_input_get_cmd(struct input_ctx *ictx, int time,
/* Parse text and return corresponding struct mp_cmd. */
struct mp_cmd *mp_input_parse_cmd(char *str);
-/**
- * Parse and queue commands separated by '\n'.
- * Return number of commands queued.
- */
-int mp_input_parse_and_queue_cmds(struct input_ctx *ictx, const char *str);
-
// After getting a command from mp_input_get_cmd you need to free it using this
// function
void mp_cmd_free(struct mp_cmd *cmd);