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. --- DOCS/man/input.rst | 5 +++++ player/command.c | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/DOCS/man/input.rst b/DOCS/man/input.rst index 074c98abea..fdad8e29a2 100644 --- a/DOCS/man/input.rst +++ b/DOCS/man/input.rst @@ -1334,6 +1334,11 @@ Property list ``seekable`` Return whether it's generally possible to seek in the current file. +``playback-abort`` + Return whether playback is stopped or is to be stopped. (Useful in obscure + situations like during ``on_load`` hook processing, when the user can + stop playback, but the script has to explicitly end processing.) + ``osd-sym-cc`` Inserts the current OSD symbol as opaque OSD control code (cc). This makes sense only with the ``show_text`` command or options which set OSD messages. 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