summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-03-28 00:41:38 +0100
committerwm4 <wm4@nowhere>2020-03-28 00:41:38 +0100
commitb8daef5d8b3f58481ac95f7217df8f1509fa0b59 (patch)
tree2a8ef8506413cf71a6cce7c9dc0351eeb886a864 /options
parent518bd4c306d50e6772c39c5d7395b9d10b9386da (diff)
downloadmpv-b8daef5d8b3f58481ac95f7217df8f1509fa0b59.tar.bz2
mpv-b8daef5d8b3f58481ac95f7217df8f1509fa0b59.tar.xz
input: remove deprecated --input-file option
This was deprecated 2 releases ago. The deprecation changelog entry says that there are no plans to remove it short-term, but I guess I lied.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
-rw-r--r--options/options.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/options/options.c b/options/options.c
index f6e1569994..170472af1c 100644
--- a/options/options.c
+++ b/options/options.c
@@ -718,8 +718,6 @@ static const m_option_t mp_opts[] = {
{"input-terminal", OPT_FLAG(consolecontrols), .flags = UPDATE_TERM},
- {"input-file", OPT_STRING(input_file),
- .flags = M_OPT_FILE, .deprecation_message = "use --input-ipc-server"},
{"input-ipc-server", OPT_STRING(ipc_path), .flags = M_OPT_FILE},
{"screenshot", OPT_SUBSTRUCT(screenshot_image_opts, screenshot_conf)},
diff --git a/options/options.h b/options/options.h
index 101d039cb1..1eed3184b7 100644
--- a/options/options.h
+++ b/options/options.h
@@ -319,7 +319,6 @@ typedef struct MPOpts {
struct encode_opts *encode_opts;
char *ipc_path;
- char *input_file;
int wingl_dwm_flush;