summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-20 00:59:54 +0200
committerwm4 <wm4@nowhere>2016-09-20 01:24:27 +0200
commitfb67db8b72a329fd017409338d6742c773ce85bf (patch)
treeff0a6dc6d6ba554d9ecf867147bc1bbd0d663a15 /player/command.c
parentbf5c97a6c38352d492020cd5d6c7563c709bca9d (diff)
downloadmpv-fb67db8b72a329fd017409338d6742c773ce85bf.tar.bz2
mpv-fb67db8b72a329fd017409338d6742c773ce85bf.tar.xz
player: make --osc/--ytdl settable during playback
Setting the osc or ytdl properties will now load/unload the associated scripts. (For ytdl this does not mean the currently played URL will be reloaded.) Also add a changelog entry for this, which also covers the preceding work for --terminal.
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index d6c0f9cf08..d5d95602a6 100644
--- a/player/command.c
+++ b/player/command.c
@@ -5603,6 +5603,9 @@ void mp_option_change_callback(void *ctx, struct m_config_option *co, int flags)
osd_changed(mpctx->osd);
mp_wakeup_core(mpctx);
}
+
+ if (flags & UPDATE_BUILTIN_SCRIPTS)
+ mp_load_builtin_scripts(mpctx);
}
void mp_notify_property(struct MPContext *mpctx, const char *property)