summaryrefslogtreecommitdiffstats
path: root/video/out/vo.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-06-05 16:56:34 +0200
committerwm4 <wm4@nowhere>2016-06-05 16:56:34 +0200
commitc1cb04b6a3f4fef43bf69b43b5cf7a1e770f3839 (patch)
treecdbbab6c828cf0657f088814a3136646f545b9b0 /video/out/vo.h
parentee337b47becac7316eb890355cf73a6818cbd2b9 (diff)
downloadmpv-c1cb04b6a3f4fef43bf69b43b5cf7a1e770f3839.tar.bz2
mpv-c1cb04b6a3f4fef43bf69b43b5cf7a1e770f3839.tar.xz
vo_opengl: apply vo-cmdline command incrementally
Instead of implicitly resetting the options to defaults and then applying the options, they're always applied on top of the current options (in the same way adding new options to the CLI command line will). This does not apply to vo_opengl_cb, because that has an even worse mess which I refuse to deal with.
Diffstat (limited to 'video/out/vo.h')
-rw-r--r--video/out/vo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/vo.h b/video/out/vo.h
index f417d5b522..000283cd36 100644
--- a/video/out/vo.h
+++ b/video/out/vo.h
@@ -303,6 +303,7 @@ struct vo {
struct vo_internal *in;
struct mp_vo_opts *opts;
struct vo_extra extra;
+ struct m_config *config;
// --- The following fields are generally only changed during initialization.