summaryrefslogtreecommitdiffstats
path: root/player/loadfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/loadfile.c')
-rw-r--r--player/loadfile.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/player/loadfile.c b/player/loadfile.c
index db032d422c..4f8b512e86 100644
--- a/player/loadfile.c
+++ b/player/loadfile.c
@@ -808,6 +808,14 @@ static int process_open_hooks(struct MPContext *mpctx)
return 0;
}
+static void process_unload_hooks(struct MPContext *mpctx)
+{
+ mp_hook_run(mpctx, NULL, "on_unload");
+
+ while (!mp_hook_test_completion(mpctx, "on_unload"))
+ mp_idle(mpctx);
+}
+
static void print_timeline(struct MPContext *mpctx)
{
if (mpctx->timeline) {
@@ -1212,6 +1220,8 @@ terminate_playback:
goto goto_reopen_demuxer;
}
+ process_unload_hooks(mpctx);
+
mp_nav_destroy(mpctx);
if (mpctx->stop_play == KEEP_PLAYING)