summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-08-09 00:35:25 +0200
committerwm4 <wm4@nowhere>2014-08-09 00:35:35 +0200
commit8dfe0c73c9293dbbbfae096e0fbd6e59ecbd3896 (patch)
treed6b1564e806304bf49f784a9bb5a4ed58200c672 /options
parent91be5e5c3163efe185fa4883887a60a0db16728b (diff)
downloadmpv-8dfe0c73c9293dbbbfae096e0fbd6e59ecbd3896.tar.bz2
mpv-8dfe0c73c9293dbbbfae096e0fbd6e59ecbd3896.tar.xz
video: remove "hard" framedrop mode
Completely useless, and could accidentally be enabled by cycling framedrop modes. Just get rid of it. But still allow triggering the old code with --vd-lavc-framedrop, in case someone asks for it. If nobody does, this new option will be removed eventually.
Diffstat (limited to 'options')
-rw-r--r--options/options.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/options/options.c b/options/options.c
index ff817bdc1f..b5578218d3 100644
--- a/options/options.c
+++ b/options/options.c
@@ -457,8 +457,7 @@ const m_option_t mp_opts[] = {
OPT_CHOICE("framedrop", frame_dropping, 0,
({"no", 0},
- {"yes", 1},
- {"hard", 2})),
+ {"yes", 1})),
OPT_FLAG("untimed", untimed, M_OPT_FIXED),