summaryrefslogtreecommitdiffstats
path: root/mencoder.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-18 06:28:47 +0300
committerUoti Urpala <uau@symbol.nonexistent.invalid>2008-04-23 13:46:39 +0300
commit7521aac66509d18666b7737160153986cc1437ac (patch)
tree753deecae845a29694223461e6d3a397137966b1 /mencoder.c
parent26039a38e3d5a2305e0ec93481df07c2717aa06d (diff)
downloadmpv-7521aac66509d18666b7737160153986cc1437ac.tar.bz2
mpv-7521aac66509d18666b7737160153986cc1437ac.tar.xz
Move global vo_config_count to vo struct
Remove the global and Add a corresponding field to the vo struct, plus another which tells whether the LAST config call was successful.The latter value which tells whether the VO should be properly configured at the moment seems a better match for the semantics actually needed in most places where the old value was used. The 'count' field with the old semantics is not currently used by anything, but I'm leaving it there for vo drivers which would need those semantics if converted to use the struct. Existing uses of the global outside old vo drivers are either converted to use the struct field or moved inside the vo_xyz() calls (instead of "if (vo_config_count) vo_flip_page(..." just call vo_flip_page which will now do nothing if not configured). The removal of the check in mpcommon.c/update_subtitles() is less trivial than the others, but I think it shouldn't cause problems.
Diffstat (limited to 'mencoder.c')
-rw-r--r--mencoder.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/mencoder.c b/mencoder.c
index 873a4af734..8c429fa615 100644
--- a/mencoder.c
+++ b/mencoder.c
@@ -97,7 +97,6 @@ MPOpts opts;
int vo_doublebuffering=0;
int vo_directrendering=0;
-int vo_config_count=1;
int forced_subs_only=0;
//--------------------------