summaryrefslogtreecommitdiffstats
path: root/player/loadfile.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-15 14:22:48 +0200
committerwm4 <wm4@nowhere>2016-09-15 14:50:38 +0200
commit9c9cf125ad71aeff7fe6979b7b5d1f44f2d1a6ac (patch)
treeb9e03cb03c32950fd4d2436f755ffea1c368b4ce /player/loadfile.c
parent5968a307d5c05d1b4604be4fddd416b0aecb534e (diff)
downloadmpv-9c9cf125ad71aeff7fe6979b7b5d1f44f2d1a6ac.tar.bz2
mpv-9c9cf125ad71aeff7fe6979b7b5d1f44f2d1a6ac.tar.xz
osd: slightly simplify update logic
Remove the per-part force_redraw flags, and instead make the difference between flagging dirty state and returning it to the player frontend more explicit. The big issue is that 1. the OSD needs to know the dirty state, and it should be cleared strictly when it is re-rendered (force_redraw flag), and 2. the player core needs to be notified once, and the notification must be reset (want_redraw flag). The call in loadfile.c is replaced by making osd_set_sub() set the change flag. Increasing the change flag on dirty state (the force_redraw check in render_object()) should not be needed, because OSD part renderers set it correctly (at least now). Doing this just because someone pointed this out.
Diffstat (limited to 'player/loadfile.c')
-rw-r--r--player/loadfile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/player/loadfile.c b/player/loadfile.c
index 8f065e8d07..ebead19e4e 100644
--- a/player/loadfile.c
+++ b/player/loadfile.c
@@ -473,7 +473,6 @@ void mp_switch_track_n(struct MPContext *mpctx, int order, enum stream_type type
}
mp_notify(mpctx, MPV_EVENT_TRACK_SWITCHED, NULL);
- osd_changed_all(mpctx->osd);
talloc_free(mpctx->track_layout_hash);
mpctx->track_layout_hash = talloc_steal(mpctx, track_layout_hash(mpctx));