summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/options/options.c b/options/options.c
index 63cd93c53f..af55529260 100644
--- a/options/options.c
+++ b/options/options.c
@@ -323,9 +323,12 @@ const m_option_t mp_opts[] = {
OPT_TRACKCHOICE("vid", stream_id[0][STREAM_VIDEO]),
OPT_TRACKCHOICE("sid", stream_id[0][STREAM_SUB]),
OPT_TRACKCHOICE("secondary-sid", stream_id[1][STREAM_SUB]),
- OPT_TRACKCHOICE("ff-aid", stream_id_ff[STREAM_AUDIO]),
- OPT_TRACKCHOICE("ff-vid", stream_id_ff[STREAM_VIDEO]),
- OPT_TRACKCHOICE("ff-sid", stream_id_ff[STREAM_SUB]),
+ OPT_TRACKCHOICE("ff-aid", stream_id_ff[STREAM_AUDIO],
+ .deprecation_message = "no replacement"),
+ OPT_TRACKCHOICE("ff-vid", stream_id_ff[STREAM_VIDEO],
+ .deprecation_message = "no replacement"),
+ OPT_TRACKCHOICE("ff-sid", stream_id_ff[STREAM_SUB],
+ .deprecation_message = "no replacement"),
OPT_ALIAS("sub", "sid"),
OPT_ALIAS("video", "vid"),
OPT_ALIAS("audio", "aid"),