From 0fa9e2bff0a40e077bc05dd3be70ce12ddaf6317 Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 21 Oct 2014 13:32:30 +0200 Subject: command: add playback-abort property Now this is obscure. --- player/command.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'player/command.c') 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}, -- cgit v1.2.3