summaryrefslogtreecommitdiffstats
path: root/sub/osd.h
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 /sub/osd.h
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 'sub/osd.h')
-rw-r--r--sub/osd.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sub/osd.h b/sub/osd.h
index 6bfa6dd525..cf66392904 100644
--- a/sub/osd.h
+++ b/sub/osd.h
@@ -145,8 +145,7 @@ struct mpv_global;
struct dec_sub;
struct osd_state *osd_create(struct mpv_global *global);
-void osd_changed(struct osd_state *osd, int new_value);
-void osd_changed_all(struct osd_state *osd);
+void osd_changed(struct osd_state *osd);
void osd_free(struct osd_state *osd);
bool osd_query_and_reset_want_redraw(struct osd_state *osd);