summaryrefslogtreecommitdiffstats
path: root/mpvcore/playlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/playlist.h')
-rw-r--r--mpvcore/playlist.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/mpvcore/playlist.h b/mpvcore/playlist.h
index 17a5cf6a9b..35d9dab701 100644
--- a/mpvcore/playlist.h
+++ b/mpvcore/playlist.h
@@ -38,7 +38,9 @@ struct playlist_entry {
// played only for a very short time. This is used to make playlist
// navigation just work in case the user has unplayable files in the
// playlist.
- bool playback_failed;
+ bool playback_short : 1;
+ // Set to true if not at least 1 frame (audio or video) could be played.
+ bool init_failed : 1;
};
struct playlist {