summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index 60ce915a9a..f811a8ea06 100644
--- a/player/command.c
+++ b/player/command.c
@@ -1157,6 +1157,13 @@ static int mp_property_seeking(void *ctx, struct m_property *prop,
return m_property_flag_ro(action, arg, !mpctx->restart_complete);
}
+static int mp_property_playback_abort(void *ctx, struct m_property *prop,
+ int action, void *arg)
+{
+ MPContext *mpctx = ctx;
+ return m_property_flag_ro(action, arg, !mpctx->playing || mpctx->stop_play);
+}
+
static int mp_property_cache(void *ctx, struct m_property *prop,
int action, void *arg)
{
@@ -2957,6 +2964,7 @@ static const struct m_property mp_properties[] = {
{"core-idle", mp_property_core_idle},
{"eof-reached", mp_property_eof_reached},
{"seeking", mp_property_seeking},
+ {"playback-abort", mp_property_playback_abort},
{"cache", mp_property_cache},
{"cache-free", mp_property_cache_free},
{"cache-used", mp_property_cache_used},