summaryrefslogtreecommitdiffstats
path: root/player/misc.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-10-28 19:51:44 +0100
committerwm4 <wm4@nowhere>2014-10-28 20:30:12 +0100
commit2c320fb609dde644bcfa3389e6a2664baa38ee2b (patch)
tree34dd218faa868661b0edd5e86d9bad55583f33bb /player/misc.c
parent0c71ae0528a6143995697fb02023c3180ee44c18 (diff)
downloadmpv-2c320fb609dde644bcfa3389e6a2664baa38ee2b.tar.bz2
mpv-2c320fb609dde644bcfa3389e6a2664baa38ee2b.tar.xz
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).
Diffstat (limited to 'player/misc.c')
-rw-r--r--player/misc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/player/misc.c b/player/misc.c
index c178ec7b39..6ddbc31f52 100644
--- a/player/misc.c
+++ b/player/misc.c
@@ -189,8 +189,9 @@ void error_on_track(struct MPContext *mpctx, struct track *track)
MP_INFO(mpctx, "Audio: no audio\n");
if (track->type == STREAM_VIDEO)
MP_INFO(mpctx, "Video: no video\n");
- if (!mpctx->current_track[0][STREAM_AUDIO] &&
- !mpctx->current_track[0][STREAM_VIDEO])
+ if (mpctx->opts->stop_playback_on_init_failure ||
+ (!mpctx->current_track[0][STREAM_AUDIO] &&
+ !mpctx->current_track[0][STREAM_VIDEO]))
{
mpctx->stop_play = PT_ERROR;
if (mpctx->error_playing >= 0)