From 2c320fb609dde644bcfa3389e6a2664baa38ee2b Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 28 Oct 2014 19:51:44 +0100 Subject: player: add an option to abort playback on partial init failures This is probably what libmpv users want; and it also improves error reporting (or we'd have to add a way to communicate such mid-playback failures as events). --- options/options.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'options/options.c') diff --git a/options/options.c b/options/options.c index da8cd4035d..473e04f56e 100644 --- a/options/options.c +++ b/options/options.c @@ -478,6 +478,8 @@ const m_option_t mp_opts[] = { OPT_STRING("stream-capture", stream_capture, M_OPT_FIXED | M_OPT_FILE), OPT_STRING("stream-dump", stream_dump, M_OPT_FIXED | M_OPT_FILE), + OPT_FLAG("stop-playback-on-init-failure", stop_playback_on_init_failure, 0), + OPT_CHOICE_OR_INT("loop", loop_times, M_OPT_GLOBAL, 2, 10000, ({"no", -1}, {"1", -1}, {"inf", 0})), -- cgit v1.2.3